public GetDonationByIdQueryHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Example #2
0
 public DeleteAppointmentCommandHandler(ILifeBankDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public CreateDonationCommandHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Example #4
0
 public DeleteDonationCommandHandler(ILifeBankDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public GetDonorByIdQueryHandler(IMapper mapper, ILifeBankDbContext dBContext)
 {
     this.mapper    = mapper;
     this.dBContext = dBContext;
 }
 public GetDonorsListQueryHandler(ILifeBankDbContext dBcontext, IMapper mapper)
 {
     this.dBcontext = dBcontext;
     this.mapper    = mapper;
 }
 public UpdateDonorCommandHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
Example #8
0
 public CreateDonorCommandHandler(ILifeBankDbContext dBContext, IMapper mapper)
 {
     DbContext = dBContext;
     Mapper    = mapper;
 }
Example #9
0
 public UpdateAppointmentCommandHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
 public GetAppointmentByIdQueryHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }