public ApiGroupApiController(IApiGroupService apiGroupService,
                              IRoleGroupService roleGroupService,
                              IApiEndpointService apiEndpointService,
                              IMapper mapper) : base(mapper)
 {
     _apiGroupService    = apiGroupService;
     _roleGroupService   = roleGroupService;
     _apiEndpointService = apiEndpointService;
 }
 public RoleGroupApiController(IRoleGroupService roleGroupService,
                               IApiGroupService apiGroupService,
                               IUserService userService,
                               IMapper mapper) : base(mapper)
 {
     _roleGroupService = roleGroupService;
     _apiGroupService  = apiGroupService;
     _userService      = userService;
 }