Esempio n. 1
0
        // BusinessUser
        public bool CreateBusinessUser(string name, string email, string password, string phone)
        {
            BusinessUser tmp = new BusinessUser(name, email, password, phone);

            return(tmp.Create());
        }