Example #1
0
 public ActionResult InsertInStock(InStockViewModel vm)
 {
     _taskAppService.InsertInStock(vm.ObjectId, vm.ShelfId, vm.SourceId, vm.Quantity, vm.Remark, GetWorkerId());
     // valid vm ToDO
     return(RedirectToAction("InList"));
 }