コード例 #1
0
 public GetDonationByIdQueryHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
コード例 #2
0
 public DeleteAppointmentCommandHandler(ILifeBankDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
コード例 #3
0
 public CreateDonationCommandHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
コード例 #4
0
 public DeleteDonationCommandHandler(ILifeBankDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
コード例 #5
0
 public GetDonorByIdQueryHandler(IMapper mapper, ILifeBankDbContext dBContext)
 {
     this.mapper    = mapper;
     this.dBContext = dBContext;
 }
コード例 #6
0
 public GetDonorsListQueryHandler(ILifeBankDbContext dBcontext, IMapper mapper)
 {
     this.dBcontext = dBcontext;
     this.mapper    = mapper;
 }
コード例 #7
0
 public UpdateDonorCommandHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
コード例 #8
0
 public CreateDonorCommandHandler(ILifeBankDbContext dBContext, IMapper mapper)
 {
     DbContext = dBContext;
     Mapper    = mapper;
 }
コード例 #9
0
 public UpdateAppointmentCommandHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
コード例 #10
0
 public GetAppointmentByIdQueryHandler(ILifeBankDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }