public static void Delete(int ID) { GroupDataMapper objCaller = new GroupDataMapper(); objCaller.Delete(ID); }
public static IList<Group> GetAll() { GroupDataMapper objCaller = new GroupDataMapper(); return objCaller.GetAll(); }
public static void Update(Group obj) { GroupDataMapper objCaller = new GroupDataMapper(); objCaller.Update(obj); }
public static Group GetByID(int ID) { GroupDataMapper objCaller = new GroupDataMapper(); return objCaller.GetByID(ID); }
public static int Add(Group obj) { GroupDataMapper objCaller = new GroupDataMapper(); return objCaller.Add(obj); }