public static void DeleteInventory(int ID) { InventoryDAL.DeleteInventory(ID); }
public ActionResult DeleteInventory(int ID) { return(Json(objDAL.DeleteInventory(ID))); }
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); }