public void UpdateCustomer(string ScrName, string Username, string Password, string Salt, string Email) { DBCustomer dbc = new DBCustomer(); Console.WriteLine(); Console.WriteLine("UpdateCustomer() " + GetExecutionThreadTime()); dbc.UpdateCustomer(ScrName, Username, Password, Salt, Email); }
public void UpdateCustomer(int customerID, string name, string email, string phone, string password) { dbCus.UpdateCustomer(customerID, name, email, phone, password); }