/// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public SheetRetrievalService(SheetRepository sheetRepository, AppOwnerRepository appOwnerRepository, IMapper mappingEngine, RecurringSheetEntryRepository recurringSheetEntryRepository)
 {
     this._sheetRepository               = sheetRepository;
     this._appOwnerRepository            = appOwnerRepository;
     this._mappingEngine                 = mappingEngine;
     this._recurringSheetEntryRepository = recurringSheetEntryRepository;
 }
 public MonthlyDigestForAppOwnerJob(AppOwnerRepository appOwnerRepository, AppUserManager appUserManager, MonthlyDigestDataFactory monthlyDigestDataFactory, MonthlyDigestMailer monthlyDigestMailer, ILogger <MonthlyDigestForAppOwnerJob> logger)
 {
     this._appOwnerRepository       = appOwnerRepository;
     this._appUserManager           = appUserManager;
     this._logger                   = logger;
     this._monthlyDigestDataFactory = monthlyDigestDataFactory;
     this._monthlyDigestMailer      = monthlyDigestMailer;
 }
 public UserController(AppUserManager appUserManager, AppOwnerRepository appOwnerRepository)
 {
     this._appUserManager     = appUserManager;
     this._appOwnerRepository = appOwnerRepository;
 }
Beispiel #4
0
 public UserController(AppUserManager appUserManager, AppOwnerRepository appOwnerRepository, IMapper mappingEngine)
 {
     this._appUserManager     = appUserManager;
     this._appOwnerRepository = appOwnerRepository;
     this._mappingEngine      = mappingEngine;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public EntityOwnerService(AppOwnerRepository appOwnerRepository)
 {
     this._appOwnerRepository = appOwnerRepository;
 }
Beispiel #6
0
 public MonthlyDigestInvocationJob(AppOwnerRepository appOwnerRepository, IBackgroundJobClient backgroundJobClient, ILogger <MonthlyDigestInvocationJob> logger)
 {
     this._appOwnerRepository  = appOwnerRepository;
     this._backgroundJobClient = backgroundJobClient;
     this._logger = logger;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public SheetRetrievalService(SheetRepository sheetRepository, AppOwnerRepository appOwnerRepository)
 {
     this._sheetRepository = sheetRepository;
     this._appOwnerRepository = appOwnerRepository;
 }
Beispiel #8
0
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public SheetRetrievalService(SheetRepository sheetRepository, AppOwnerRepository appOwnerRepository)
 {
     this._sheetRepository    = sheetRepository;
     this._appOwnerRepository = appOwnerRepository;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="T:System.Object"/> class.
 /// </summary>
 public EntityOwnerService(AppOwnerRepository appOwnerRepository)
 {
     this._appOwnerRepository = appOwnerRepository;
 }
 public UserController(AppUserManager appUserManager, AppOwnerRepository appOwnerRepository) {
     this._appUserManager = appUserManager;
     this._appOwnerRepository = appOwnerRepository;
 }