コード例 #1
0
ファイル: DepotController.cs プロジェクト: olgunozoktas/Kovan
 public ActionResult deleteDepot(int id)
 {
     using (DepotManager dm = new DepotManager())
     {
         var model = dm.GetDepot(id);
         return(PartialView(model));
     }
 }
コード例 #2
0
ファイル: DepotService.cs プロジェクト: henryvalentine/PPIPS
 public DepotObject GetDepot(long depotId)
 {
     try
     {
         return(_depotManager.GetDepot(depotId));
     }
     catch (Exception ex)
     {
         ErrorLogger.LoggError(ex.StackTrace, ex.Source, ex.Message);
         return(new DepotObject());
     }
 }