public AddPatientCommandHandler(IPatientManagementSysDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Пример #2
0
 public ReadPatientQueryHandler(IPatientManagementSysDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public UpdatePatientRecordCommandHandler(IPatientManagementSysDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public SearchPatientByIdQueryHandler(IPatientManagementSysDbContext dbContext)
 {
     this.dbContext = dbContext;
 }