Beispiel #1
0
 /// <summary>
 /// Delete operation for Inventory
 /// <param name="_Id"></param>
 /// <returns></returns>
 private bool Delete(Int32 _Id)
 {
     using (InventoryDataAccess data = new InventoryDataAccess(ClientContext))
     {
         // return if code > 0
         return(data.Delete(_Id) > 0);
     }
 }