Example #1
0
 public int DeleteGroup(int id)
 {
     return(Group_Repo.DeleteGroup(id));
 }
Example #2
0
 public int CreateGroup(Group group)
 {
     return(Group_Repo.Create(group));
 }
Example #3
0
 // Manage Groups //
 public Group GetGroupById(int id)
 {
     return(Group_Repo.GetGroupById(id));
 }