Example #1
0
 public HomeController(ILogger <HomeController> logger, ILogoService logo, IBaseCache cache, RedisStringService stringService, IRabbitManage mq)
 {
     _Logger        = logger;
     _Logo          = logo;
     _BaseCache     = cache;
     _StringService = stringService;
     _RabbitMQ      = mq;
 }
 public LogoUploadApiController(ILogoService logoService)
 {
     _logoService = logoService;
 }
Example #3
0
 public LogoAppService(IMapper mapper, ILogoService logoService, IUnitOfWork uow)
 {
     _mapper      = mapper;
     _logoService = logoService;
     _uow         = uow;
 }
Example #4
0
 public LogoViewComponent(ILogoService logoService)
 {
     this.logoService = logoService;
 }
Example #5
0
 public LogoController(ILogoService logoService, IHostingEnvironment hostingEnvironment)
 {
     _logoService        = logoService;
     _hostingEnvironment = hostingEnvironment;
 }