// creates a user from the user input on payment part of the website // that then returns a string to let the user know it worked public string AddUser(string fornavn, string efternavn, string tlfnr, string adresse, string postnr) { DbControl dal = new DbControl(); return(dal.AddUser(fornavn, efternavn, tlfnr, adresse, postnr)); }