예제 #1
0
 public bool Insert(pos.EL.Registrations.Customers cus)
 {
     pos.DL.Registrations.Customers customerDL = new pos.DL.Registrations.Customers();
     if (customerDL.Insert(cus))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
예제 #2
0
 public Boolean Delete(pos.EL.Registrations.Customers cus)
 {
     pos.DL.Registrations.Customers customerDL = new pos.DL.Registrations.Customers();
     if (customerDL.Delete(cus))
     {
         return(true);
     }
     else
     {
         return(false);
     }
 }
예제 #3
0
 public pos.EL.Registrations.Customers Select(pos.EL.Registrations.Customers cus)
 {
     pos.DL.Registrations.Customers customerDL = new pos.DL.Registrations.Customers();
     return(customerDL.Select(cus));
 }
예제 #4
0
 public System.Data.DataTable List(pos.EL.Registrations.Customers cus)
 {
     pos.DL.Registrations.Customers customerDL = new pos.DL.Registrations.Customers();
     return(customerDL.List(cus));
 }