Example #1
0
        public UserRepository(CliniciaDbContext context, IMapper mapper)
            : base(context)
        {
            _mapper = mapper;

            SeedData();
        }
Example #2
0
 public FavoriteRepository(CliniciaDbContext context, IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }
 public GenericRepository(CliniciaDbContext context)
 {
     Context = context;
 }
 public DeviceRepository(CliniciaDbContext context)
     : base(context)
 {
 }
Example #5
0
 public CheckingServiceRepository(CliniciaDbContext context, IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }
 public AppointmentRepository(CliniciaDbContext context, IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }
Example #7
0
 public ReviewRepository(CliniciaDbContext context, IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }
Example #8
0
 public UnitOfWork(CliniciaDbContext context, IMapper mapper)
 {
     Context = context ?? throw new ArgumentNullException(nameof(context));
     _mapper = mapper;
 }
 public NotificationRepository(CliniciaDbContext context, IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }
Example #10
0
 public SpecialtyRepository(CliniciaDbContext context, IMapper mapper) : base(context)
 {
     _mapper = mapper;
 }
 public WorkingScheduleRepository(CliniciaDbContext context, IMapper mapper)
     : base(context)
 {
     _mapper = mapper;
 }