40 lines
1000 B
C#
40 lines
1000 B
C#
|
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 : IGroupRepository
|
|||
|
{
|
|||
|
public bool AddGroup(GroupLocalEntity newGroup)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<GroupLocalEntity> GetAllGroup()
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public List<GroupLocalEntity> GetAllGroups() => LocalStaticData.groups;
|
|||
|
|
|||
|
public GroupLocalEntity GetGroupById(int groupID)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool RemoveGroupById(int groupID)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
|
|||
|
public bool UpdateGroupById(int groupID, GroupLocalEntity updatedGroup)
|
|||
|
{
|
|||
|
throw new NotImplementedException();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|