Example #1
0
 /// <summary>
 /// Inserts a customer to the database
 /// </summary>
 /// <param name="name">The name of the customer (ID is auto-generated)</param>
 public int InsertCustomer(string name, string phoneNumber, string password, string mail)
 {
     //make some checks here.
     return(dbCus.InsertCustomer(name, phoneNumber, password, mail));
 }