practos/Demo/Data/Repository/GroupRepositoryImpl.cs

49 lines
1.3 KiB
C#
Raw Normal View History

2024-10-14 11:51:48 +00:00
using Demo.Data.LocalData;
using Demo.domain.Models;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Data.Repository
{
public class GroupRepositoryImpl
{
public List<GroupLocalEntity> GetAllGroups() => LocalStaticData.groups;
public List<GroupLocalEntity> GetAllGroups
{ get; set; }
public bool RemoveGroupById(int id)
{
GroupLocalEntity? groupLocal = GetAllGroups
.Where(x => x.int == id).FirstOrDefault();
if (groupLocal == null) return false;
return GetAllGroup.Remove(groupLocal);
}
public GroupLocalEntity? GetGroupByGuid(int id)
{
GroupLocalEntity? groupLocal = GetAllGroups
.Where(x => x.int == id).FirstOrDefault();
if (groupLocal == null) return null;
return groupLocal;
}
public GroupLocalEntity? UpdateGroup(GroupLocalEntity groupUpdateLocalEnity)
{
GroupLocalEntity? groupLocal = GetAllGroups
.Where(x => x.int == groupUpdateLocalEnity.id).FirstOrDefault();
if (groupLocal == null) return null;
groupLocal.Name = groupUpdateLocalEnity.Name;
return groupLocal;
}
2024-10-14 11:51:48 +00:00
}
2024-10-14 11:51:48 +00:00
}