예제 #1
0
 /// <summary>
 /// Get All Sectors
 /// </summary>
 /// <returns></returns>
 public void GetAllSector(SearchAttributes searchParam)
 {
     try
     {
         this.lstSector   = new List <TSMSector>();
         this.SearchParam = searchParam;
         this.lstSector   = SectorService.GetSectors(searchParam, TSMContext.CurrentLanguageID);
     }
     catch (Exception ex)
     {
         ErrorLog.WriteLog("ManageUserModel", "Populate", ex, "");
     }
 }