34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
using presence.Data.LocalData.Entity;
|
|
using presence.Data.RemoteData.RemoteDatabase.DAO;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace presence.Data.LocalData
|
|
{
|
|
public class LocalStaticData
|
|
{
|
|
public static List<GroupLocalEntity> groups => new List<GroupLocalEntity>
|
|
{
|
|
new GroupLocalEntity{ ID = 1, Name = "ИП1-21"},
|
|
new GroupLocalEntity{ ID = 2, Name = "ИП1-22"},
|
|
new GroupLocalEntity{ ID = 3, Name = "ИП1-23"},
|
|
};
|
|
public static List<UserLocalEntity> users => new List<UserLocalEntity>
|
|
{
|
|
new UserLocalEntity{UserId = 1, UserFIO = "RandomFio", GroupID = 1 },
|
|
new UserLocalEntity{UserId = 2, UserFIO = "RandomFio1", GroupID = 2 },
|
|
new UserLocalEntity{UserId = 3, UserFIO = "RandomFio2", GroupID = 3 },
|
|
new UserLocalEntity{UserId = 4, UserFIO = "RandomFio3", GroupID = 1 },
|
|
new UserLocalEntity{UserId = 5, UserFIO = "RandomFio4", GroupID = 2 },
|
|
new UserLocalEntity{UserId = 6, UserFIO = "RandomFio5", GroupID = 3 },
|
|
};
|
|
public static List<PresenceLocalEntity> presences => new List<PresenceLocalEntity>
|
|
{
|
|
|
|
};
|
|
}
|
|
}
|