Ejemplo n.º 1
0
 public ShiftRepository(AppDbContext context, ITimeRepository timeRepository, IDoctorShiftRepository doctorShiftRepository)
 {
     this.context               = context;
     this.timeRepository        = timeRepository;
     this.doctorShiftRepository = doctorShiftRepository;
 }
Ejemplo n.º 2
0
 public DoctorShiftsController(IMapper mapper, IDoctorShiftRepository repository)
 {
     this.mapper     = mapper;
     this.repository = repository;
 }