//for Register Page public bool Register(Dictionary <string, string> info) { Account ac = new Account() { Firstname = info["First Name"], Lastname = info["Last Name"], Username = info["Username"], Password = info["Password"] }; //pass to DAL to save to database if (!dal.AccountRegister(ac)) { return(false); } return(true); }