public BookController(IBookBusinessService bookBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment, IUserBusinessService userBusinessService) : base(mapper, hostEnvironment) { this.bookBusinessService = bookBusinessService; this.userBusinessService = userBusinessService; }
public EbsApiController(IBookBusinessService bookBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment) { this.bookBusinessService = bookBusinessService; this.folder = Path.Combine(hostEnvironment.WebRootPath, "files"); this.mapper = mapper; }
public AdminController(IMapper mapper, IBookBusinessService bookBusinessService, IUserBusinessService userBusinessService) { this.bookBusinessService = bookBusinessService; this.userBusinessService = userBusinessService; this.mapper = mapper; }
public UserController(IUserBusinessService userBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment, IBookBusinessService bookBusinessService, IConfiguration configuration) : base(mapper, hostEnvironment) { this.userBusinessService = userBusinessService; this.bookBusinessService = bookBusinessService; this.configuration = configuration; }
public EbsApiController(IAdminBusinessService adminBusinessService, IUserBusinessService userBusinessService, IBookBusinessService bookBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment) { this.adminBusinessService = adminBusinessService; this.userBusinessService = userBusinessService; this.bookBusinessService = bookBusinessService; this.hostEnvironment = hostEnvironment; this.mapper = mapper; }
public TransactionController(IBookBusinessService bookBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment) : base(bookBusinessService, mapper, hostEnvironment) { }
public AdminController(IAdminBusinessService adminBusinessService, IUserBusinessService userBusinessService, IBookBusinessService bookBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment) : base(adminBusinessService, userBusinessService, bookBusinessService, mapper, hostEnvironment) { }
public BookController(IBookBusinessService bookBusinessService, IUserBusinessService userBusinessService, IMapper mapper, IWebHostEnvironment hostEnvironment) : base(bookBusinessService, mapper, hostEnvironment, userBusinessService) { }