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