public BookGroupController(IBookGroupService bookGroupService, IMapper mapper, IUriService uriService, IHttpContextAccessor httpContextAccessor)
 {
     _bookGroupService    = bookGroupService;
     _mapper              = mapper;
     _uriService          = uriService;
     _httpContextAccessor = httpContextAccessor;
 }
Example #2
0
 public BookGroupController(IBookGroupService ibgs)
 {
     _ibgs = ibgs;
 }