Beispiel #1
0
        public async Task AddAsync(GrupoIndexDTO grupoDTO)
        {
            Grupo grupo = grupoDTO.BuildModel();
            await _repository.AddAsync(grupo);

            await _repository.SaveChangesAsync();
        }
Beispiel #2
0
        public async Task <IActionResult> Add(GrupoIndexDTO grupoIndexDTO)
        {
            IdentityUser user = await _userManager.GetUserAsync(HttpContext.User);

            grupoIndexDTO.UserId = user.Id;
            await _grupoService.AddAsync(grupoIndexDTO);

            return(await BuildPartialView());
        }