public ParallelLoadManager(IDownloaderService downloadService,
                            IUploaderService uploadService,
                            IInformService informService)
 {
     _downloadService = downloadService;
     _uploadService   = uploadService;
     _informService   = informService;
 }
 public InformController(IInformService informService, ILogger logger, IInformFactory informFactory)
 {
     _informService = informService;
     _ILogger       = logger;
     _informFactory = informFactory;
 }
Esempio n. 3
0
 public InformsController(IInformService _informService)
 {
     this.InformService = _informService;
 }