Пример #1
0
 public CustomerDTO AddCustomer(CustomerDTO cutomerDTO)
 {
     try
     {
         return(_ICustomerDAL.AddCustomerToDB(cutomerDTO));
     }
     catch (Exception)
     {
         throw;
     }
 }