Пример #1
0
 //create new cust
 public static void CreateCust(Customer cust)
 {
     // Call the DAL to create a new record.
     try
     {
         CustomerDAL.CreateCust(cust);
     }
     catch (Exception ex)
     {
         throw;
     }
 }