Exemplo n.º 1
0
 public async Task UpdateAsync(int roleId, EditRoleInputViewModel input)
 {
     await _roleService.UpdateRoleAsync(roleId, input.Role);
 }
Exemplo n.º 2
0
 public async Task CreateAsync(EditRoleInputViewModel input)
 {
     await _roleService.CreateRoleAsync(input.Role);
 }