コード例 #1
0
ファイル: DepotService.cs プロジェクト: henryvalentine/PPIPS
 public List <DepotObject> GetDepots()
 {
     try
     {
         return(_depotManager.GetDepots());
     }
     catch (Exception ex)
     {
         ErrorLogger.LoggError(ex.StackTrace, ex.Source, ex.Message);
         return(new List <DepotObject>());
     }
 }
コード例 #2
0
ファイル: DepotController.cs プロジェクト: olgunozoktas/Kovan
 // GET: Depot
 public ActionResult Index()
 {
     using (DepotManager dm = new DepotManager())
     {
         return(View(dm.GetDepots()));
     }
 }