private void DeleteService()
 {
     try
     {
         int result = StorehouseHelper.DeleteCustomerService(CustomerService.ServiceId);
         //
         if (result < 0)
         {
             ShowResultMessage(result);
             return;
         }
         //
         RedirectToBrowsePage();
     }
     catch (Exception ex)
     {
         ShowErrorMessage("DELETE_SERVICE", ex);
     }
 }