Exemple #1
0
 public BusinessService(BusinessStore businessStore, NotificationSender notificationService, UserManager <ApplicationUser> userManager)
 {
     this.businessStore      = businessStore;
     this.notificationSender = notificationService;
     this.userManager        = userManager;
 }
Exemple #2
0
 public AccountService(UserManager <ApplicationUser> userManager, NotificationSender notificationSender)
 {
     this.userManager        = userManager;
     this.notificationSender = notificationSender;
 }
 public InvoiceService(InvoiceStore invoiceStore, NotificationSender notificationSender)
 {
     this.invoiceStore       = invoiceStore;
     this.notificationSender = notificationSender;
 }