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