コード例 #1
0
 public ActionResult Delete(int id)
 {
     POSModel.Id = id;
     POSModel    = POSDal.GetPurchaseOrder(POSModel);
     return(View(POSModel));
 }
コード例 #2
0
 public ActionResult Edit(int id)
 {
     POSModel.Id = id;
     POSModel    = POSDal.GetPurchaseOrder(POSModel);
     return(View("Create", POSModel));
 }