Esempio n. 1
0
        public ActionResult addUser(User user, string password)
        {
            TasksRepository repo = new TasksRepository(Properties.Settings.Default.ConStr);

            repo.AddUser(user, password);
            return(Redirect("/home/index"));
        }