void UserRegistration(string accountid, string usertype, string lname, string fname, string mname,
     string address, string gender, string birthday, string contactno, string email, string password)
 {
     Account account = new Account();
     account.UserRegistration(accountid, usertype, lname, fname, mname, address, gender, birthday,
         contactno, email, password);
 }