Пример #1
0
        public async Task <Role> Create(Role model)
        {
            _context.Add(model);
            await _context.SaveChangesAsync();

            return(model);
        }
Пример #2
0
        public async Task <User> Create(User model)
        {
            // We convert the password into an SHA1 hash
            model.Password = Cryptography.Sha1(model.Password);

            _context.Add(model);
            await _context.SaveChangesAsync();

            return(model);
        }