private int CreateUserProfile(string username, out string ex, out int profileID) { int result; UsersDAL adduserprofile = new UsersDAL(); result = adduserprofile.AddNewUserProfile(username, out ex, out profileID); return(result); }