Exemplo n.º 1
0
 public FedexOrderAckService(
     ICreateEdiContentFrom <CreateOrderMessage> builder,
     IFileCreationService fileSvc)
 {
     _builder = builder;
     _fileSvc = fileSvc;
 }
 public FedexOrderAckService(
                             ICreateEdiContentFrom<CreateOrderMessage> builder,
                             IFileCreationService fileSvc)
 {
     _builder = builder;
     _fileSvc = fileSvc;
 }
Exemplo n.º 3
0
 public PostCreationService(
     IUnitOfWorkFactory unitOfWorkFactory,
     IFileCreationService fileCreationService,
     IUserService userService,
     IScoreService scoreService,
     IApiResultService apiResultService,
     IMapper mapper,
     ISentimentService sentimentService)
 {
     this.unitOfWorkFactory   = unitOfWorkFactory;
     this.fileCreationService = fileCreationService;
     this.userService         = userService;
     this.scoreService        = scoreService;
     this.apiResultService    = apiResultService;
     this.mapper           = mapper;
     this.sentimentService = sentimentService;
 }
Exemplo n.º 4
0
 public PictureService(IFileCreationService fileCreationService)
 {
     this.fileCreationService = fileCreationService;
 }