19 lines
550 B
C#
19 lines
550 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
using presence.data.Entity;
|
||
|
using presence.data.LocalData.Entity;
|
||
|
using presence.data.RemoteData.RemoteDataBase.DAO;
|
||
|
|
||
|
namespace presence.data.Repository {
|
||
|
public interface IGroupRepository
|
||
|
{
|
||
|
List<GroupLocalEntity> GetAllGroup();
|
||
|
bool RemoveGroupById(int groupID);
|
||
|
bool UpdateGroupById(int groupID, String name);
|
||
|
GroupDao GetGroupById(int groupID);
|
||
|
bool AddGroup(GroupDao group);
|
||
|
}
|
||
|
}
|