Ejemplo n.º 1
0
 public ApiGroupApiController(IApiGroupService apiGroupService,
                              IRoleGroupService roleGroupService,
                              IApiEndpointService apiEndpointService,
                              IMapper mapper) : base(mapper)
 {
     _apiGroupService    = apiGroupService;
     _roleGroupService   = roleGroupService;
     _apiEndpointService = apiEndpointService;
 }
Ejemplo n.º 2
0
 public ApiEndpointApiController(IApiEndpointService apiEndpointService,
                                 IMapper mapper) : base(mapper)
 {
     _apiEndpointService = apiEndpointService;
 }