public bool RegisterUser(string email, string password, string DOB, string firstname, string lastname, string phone, string streetAddress, string zip, string country, string city)
 {
     var ubuoyRepository = new DataLayer.UbuoyRepository();
     var result = ubuoyRepository.RegisterUser(email, password, DOB, firstname, lastname, phone, streetAddress, zip, country, city);
     if (result > 0) return true;
     else return false;
 }