Exemple #1
0
 /// <summary>
 ///Method to UPDATE ManagerName
 /// </summary>
 /// <param name="wareHouse">Represents the WareHouse object</param>
 public void UpdateManagerName(WareHouse wareHouse)
 {
     try
     //WareHouse Id should not be null
     {
         if (wareHouse.WareHouseId != null)
         {
             //Calls the UpdateManagerName method of WareHouse Data Layer
             WareHouseDataAccessLayer.UpdateManagerName(wareHouse);
         }
     }
     catch (WareHouseException ex)
     {
         throw new WareHouseException(ex.Message);
     }
 }