Пример #1
0
 public CampaignService(IRecipientListService campaignRecipientLists,
                        IRecipientService campaignRecipient,
                        ICustomerService customerService)
 {
     _campaignRecipientList = campaignRecipientLists;
     _campaignRecipient     = campaignRecipient;
     _customerService       = customerService;
 }
Пример #2
0
 public OrderService(
     IRepository <Order> orders,
     IRecipientService recipientService,
     IItemService itemService,
     IOrderStatusService orderStatusService)
 {
     this.orders             = orders;
     this.recipientService   = recipientService;
     this.itemService        = itemService;
     this.orderStatusService = orderStatusService;
 }
 public PackagesController(
     IUserService userService,
     IValidatorService validatorService,
     IPackageService packageService,
     IRecipientService recipientService)
 {
     this.userService      = userService;
     this.validatorService = validatorService;
     this.packageService   = packageService;
     this.recipientService = recipientService;
 }
Пример #4
0
 public MailSenderVM
     (IRecipientService recService,
     IHostService hostService,
     ISenderService senderService,
     IMessageSendService emailSendService,
     IWindowService openWindowService)
 {
     _senderService     = senderService;
     _hostService       = hostService;
     _recipientService  = recService;
     _mesageSendService = emailSendService;
     _windowService     = openWindowService;
     Messenger.Default.Register <Sender>(this, x => EditSendersList(x));
     Messenger.Default.Register <Host>(this, x => EditHostList(x));
     Messenger.Default.Register <Recipient>(this, x => EditRecipientList(x));
     MyMessageQueue = new SnackbarMessageQueue(new TimeSpan(0, 0, 3));
     _mesageSendService.messageSend      += _mesageSendService_messageSend;
     _mesageSendService.messageScheduled += _mesageSendService_messageScheduled;
 }
Пример #5
0
 public HomeController(IRecipientService recipientService, IBillService billService)
 {
     _recipientService = recipientService;
     _billService      = billService;
 }
Пример #6
0
 public BillsController(IBillService billService, IBillFactory billFactory, IRecipientService recipientService)
 {
     _billService      = billService;
     _billFactory      = billFactory;
     _recipientService = recipientService;
 }
 public RecipientController(IRecipientService recipientService) => _recipientService = recipientService;
Пример #8
0
 public ReceiptsController(IRecipientService recipientService)
 {
     this.recipientService = recipientService;
 }
Пример #9
0
 public BookController(IBookService bookService, IRecipientService recipientService)
 {
     this.bookService      = bookService;
     this.recipientService = recipientService;
 }
Пример #10
0
 public RecipientsController(IRecipientService recipientService, IMapper mapper)
 {
     _recipientService = recipientService;
     _mapper           = mapper;
 }
Пример #11
0
 public RecipientsVM(IRecipientService service)
 {
     _recipientService = service;
 }
Пример #12
0
 public RecipientController(IRecipientService service)
 {
     _service = service;
 }
 public RecipientsController(IRecipientService recipientService, IRecipientFactory recipientFactory, IMapping mapping)
 {
     _recipientService = recipientService;
     _recipientFactory = recipientFactory;
     _mapping          = mapping;
 }