Exemple #1
0
        public bool AddAdminUser(string userName, string password)
        {
            AdminUserVModel vmodel = new AdminUserVModel
            {
                UserName = userName,
                Role     = "Administrator"
            };

            _adminService.AddAdminUser(vmodel, password);
            return(true);
        }