Esempio n. 1
0
 public int EditMasterGroup(string masterid, string mastername, string grouparr, int createmasterid, string createmastername, DateTime createdate)
 {
     using (var helper = new SqlHelper())
     {
         var count = new InternalSys_MasterGroup(helper).EditMasterGroup(masterid, mastername, grouparr, createmasterid, createmastername, createdate);
         return(count);
     }
 }
Esempio n. 2
0
        public List <Sys_Group> GetGroupByMasterId(int masterid)
        {
            using (var helper = new SqlHelper())
            {
                var result = new InternalSys_MasterGroup(helper).GetGroupByMasterId(masterid);

                return(result);
            }
        }