Demo/Data/Repository/PresenceRepositoryImpl.cs

56 lines
2.2 KiB
C#
Raw Permalink Normal View History

2024-10-22 18:51:54 +00:00
using Demo.Data.LocalData;
2024-10-24 15:57:52 +00:00
using Demo.Data.RemoteData.RemoteDataBase;
using Demo.Data.RemoteData.RemoteDataBase.DAO;
2024-10-22 18:51:54 +00:00
using Demo.Domain.Models;
namespace Demo.Data.Repository
{
2024-10-24 15:57:52 +00:00
public class SQLPresenceRepositoryImpl : IPresenceRepository
2024-10-22 18:51:54 +00:00
{
2024-10-24 15:57:52 +00:00
private readonly RemoteDatabaseContext _remoteDatabaseContext;
public SQLPresenceRepositoryImpl(RemoteDatabaseContext remoteDatabaseContext){
_remoteDatabaseContext = remoteDatabaseContext;
GetAllPresence = _remoteDatabaseContext.PresenceDaos.Select(x => new PresenceLocalEntity{UserGuid = x.UserGuid, Date = x.Date, LessonNumber = x.LessonNumber, IsAttedance = x.IsAttedance}).ToList();
}
2024-10-22 18:51:54 +00:00
public List<PresenceLocalEntity> GetAllPresence = new List<PresenceLocalEntity>{};
public List<PresenceLocalEntity> GetAllPresences(){
2024-10-24 15:57:52 +00:00
return _remoteDatabaseContext.PresenceDaos.Select(x => new PresenceLocalEntity{UserGuid = x.UserGuid, Date = x.Date, LessonNumber = x.LessonNumber, IsAttedance = x.IsAttedance}).ToList();
2024-10-22 18:51:54 +00:00
}
2024-10-24 15:57:52 +00:00
public List<PresenceLocalEntity> GeneratePresence(List<PresenceLocalEntity> presenceLocalEntities)
{
var presences = presenceLocalEntities.Select(x => new PresenceDAO
{
UserGuid = x.UserGuid,
IsAttedance = x.IsAttedance,
LessonNumber = x.LessonNumber,
Date = x.Date,
userDAO = _remoteDatabaseContext.Users.FirstOrDefault(u => u.Guid == x.UserGuid)
}).ToList();
_remoteDatabaseContext.PresenceDaos.AddRange(presences);
_remoteDatabaseContext.SaveChanges();
2024-10-23 07:53:19 +00:00
2024-10-23 09:14:11 +00:00
return presenceLocalEntities;
}
2024-10-23 07:53:19 +00:00
public void IsAttedance(int firstLesson, int lastLesson, DateOnly date, Guid UserGuid){
2024-10-24 15:57:52 +00:00
var presencesToUpdate = _remoteDatabaseContext.PresenceDaos
.Where(x => x.LessonNumber >= firstLesson
&& x.LessonNumber <= lastLesson
&& x.Date == date
&& x.UserGuid == UserGuid)
.ToList();
foreach(var presence in presencesToUpdate){
presence.IsAttedance = false;
2024-10-23 07:53:19 +00:00
}
2024-10-24 15:57:52 +00:00
_remoteDatabaseContext.SaveChanges();
2024-10-23 07:53:19 +00:00
}
2024-10-24 15:57:52 +00:00
2024-10-22 18:51:54 +00:00
}
2024-10-23 07:53:19 +00:00
}