Esempio n. 1
0
 public EvacuationFileLoader(IMapper mapper,
                             ITeamRepository teamRepository,
                             ITaskRepository taskRepository,
                             ISupplierRepository supplierRepository,
                             ISupportRepository supportRepository,
                             IEvacueesRepository evacueesRepository,
                             IPaymentRepository paymentRepository)
 {
     this.mapper             = mapper;
     this.teamRepository     = teamRepository;
     this.taskRepository     = taskRepository;
     this.supplierRepository = supplierRepository;
     this.supportRepository  = supportRepository;
     this.evacueesRepository = evacueesRepository;
     this.paymentRepository  = paymentRepository;
 }
Esempio n. 2
0
 public EvacueesTests(ITestOutputHelper output, DynamicsWebAppFixture fixture) : base(output, fixture)
 {
     evacueeRepository    = Services.GetRequiredService <IEvacueesRepository>();
     invitationRepository = Services.GetRequiredService <IInvitationRepository>();
 }