94 lines
2.9 KiB
C#
94 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Posechaemost.Data.LocalData;
|
|
using Posechaemost.Data.LocalData.Entity;
|
|
using Posechaemost.Data.RemoteData.RemoteDataBase;
|
|
using Posechaemost.Data.RemoteData.RemoteDataBase.DAO;
|
|
|
|
namespace Posechaemost.Data.Repository
|
|
{
|
|
public class SQLGroupRepositoryImpl : IGroupRepository
|
|
{
|
|
private readonly RemoteDataBaseContext _remoteDatabaseContext;
|
|
|
|
public SQLGroupRepositoryImpl(RemoteDataBaseContext remoteDatabaseContext)
|
|
{
|
|
_remoteDatabaseContext = remoteDatabaseContext;
|
|
}
|
|
|
|
public List<GroupLocalEntity> GetAllGroups() => LocalStaticData.groups;
|
|
|
|
public bool AddGroup(GroupDao group)
|
|
{
|
|
var groupDao = new GroupDao
|
|
{
|
|
Name = group.Name
|
|
};
|
|
_remoteDatabaseContext.Groups.Add(groupDao);
|
|
_remoteDatabaseContext.SaveChanges();
|
|
return true;
|
|
}
|
|
|
|
public List<GroupDao> GetAllGroup()
|
|
{
|
|
return _remoteDatabaseContext.Groups
|
|
.Include(g => g.Users)
|
|
.Select(g => new GroupDao
|
|
{
|
|
Name = g.Name,
|
|
Id = g.Id,
|
|
Users = g.Users.Select(u => new UserDao
|
|
{
|
|
UserId = u.UserId,
|
|
FIO = u.FIO,
|
|
GroupId = u.GroupId,
|
|
}).ToList()
|
|
}).ToList();
|
|
}
|
|
|
|
public GroupDao GetGroupById(int groupID)
|
|
{
|
|
var groupLocal = _remoteDatabaseContext.Groups
|
|
.Where(g => g.Id == groupID).FirstOrDefault();
|
|
if (groupLocal == null) return null;
|
|
return groupLocal;
|
|
}
|
|
|
|
public bool RemoveGroupById(int groupID)
|
|
{
|
|
var groupLocal = _remoteDatabaseContext.Groups
|
|
.Where(x => x.Id == groupID).FirstOrDefault();
|
|
if (groupLocal == null) return false;
|
|
|
|
_remoteDatabaseContext.Groups.Remove(groupLocal);
|
|
_remoteDatabaseContext.SaveChanges();
|
|
return true;
|
|
}
|
|
|
|
public bool UpdateGroupById(int groupID, string name)
|
|
{
|
|
var groupLocal = _remoteDatabaseContext.Groups
|
|
.Include(g => g.Users)
|
|
.Where(x => x.Id == groupID).FirstOrDefault();
|
|
if (groupLocal == null) return false;
|
|
|
|
groupLocal.Name = name;
|
|
|
|
groupLocal.Users = _remoteDatabaseContext.Users
|
|
.Where(x => x.GroupId == groupLocal.Id)
|
|
.Select(user => new UserDao
|
|
{
|
|
UserId = user.UserId,
|
|
FIO = user.FIO,
|
|
GroupId = user.GroupId
|
|
}).ToList();
|
|
|
|
|
|
_remoteDatabaseContext.SaveChanges();
|
|
return true;
|
|
}
|
|
}
|
|
} |