public BEGroups SelectAllInactive() { BEGroups ds = new BEGroups(); DASystemAreas da = new DASystemAreas(); da.SelectAllInactive(ds.tbl_SystemAreas); return ds; }
public BEGroups SelectSystemAreasByID(int SystemAreasID) { BEGroups ds = new BEGroups(); DASystemAreas da = new DASystemAreas(); da.SelectByID(SystemAreasID.ToString(), ds.tbl_SystemAreas); return ds; }
public void Update(BEGroups ds) { DASystemAreas da = new DASystemAreas(); da.Update(ds.tbl_SystemAreas); }