Exemple #1
0
        public void SaveClient(string forename, string surname, DateTime dateOfBirth, string firstLineAddress, string secondLineAddress, string postcode)
        {
            Client newClient = CreateClientObj(forename, surname, dateOfBirth, firstLineAddress, secondLineAddress, postcode);

            _userLogic.AddClientToDataBase(newClient);
        }