public static void DeleteInventory(int ID)
 {
     InventoryDAL.DeleteInventory(ID);
 }
예제 #2
0
 public ActionResult DeleteInventory(int ID)
 {
     return(Json(objDAL.DeleteInventory(ID)));
 }
예제 #3
0
 public bool DeleteInventory(int inventoryID, int modifiedBy)
 {
     return(inventoryDAL.DeleteInventory(inventoryID, modifiedBy));
 }
 /// <summary>
 /// Method to Delete the Inventory Details
 /// </summary>
 /// <param name="inventoryViewModel"></param>
 /// <returns></returns>
 public void DeleteInventory(string invId)
 {
     inventoryDAL.DeleteInventory(invId);
 }