public WebFileController(
     IHostingEnvironment hostingEnvironment,
     IMapper mapper,
     IWebFileService webFileService)
 {
     _hostingEnvironment = hostingEnvironment;
     _mapper             = mapper;
     _webFileService     = webFileService;
 }
Exemplo n.º 2
0
 public HomeController(
     IMapper mapper
     , IWebFileService webFileService
     , IBridgeRepository bridgeRepository
     , IComponentRepository componentRepository
     , IDamageRepository damageRepository)
 {
     _mapper              = mapper;
     _webFileService      = webFileService;
     _bridgeRepository    = bridgeRepository;
     _componentRepository = componentRepository;
     _damageRepository    = damageRepository;
 }
Exemplo n.º 3
0
 public ServiceController(IWebFileService webFileService)
 {
     _webFileService = webFileService;
 }