public ActionResult Delete(int id)
 {
     POSModel.Id = id;
     POSModel    = POSDal.GetPurchaseOrder(POSModel);
     return(View(POSModel));
 }
 public ActionResult Edit(int id)
 {
     POSModel.Id = id;
     POSModel    = POSDal.GetPurchaseOrder(POSModel);
     return(View("Create", POSModel));
 }