Exemplo n.º 1
0
        public ConsultationConfigurationService(IConsultationDictionaryRepository consultationDictionaryRepository, IExamModuleRepository examModuleRepository,
                                                IConsultationContext consultationContext, IRisProContext risProContext, ILoginUserService loginUserService)
        {
            _ConsultationDictionaryRepository = consultationDictionaryRepository;
            _ExamModuleRepository             = examModuleRepository;
            _DBContext        = consultationContext;
            _RisProContext    = risProContext;
            _LoginUserService = loginUserService;

            AddDisposableObject(consultationDictionaryRepository);
            AddDisposableObject(examModuleRepository);
            AddDisposableObject(consultationContext);
        }
Exemplo n.º 2
0
 public LoginUserService(IConsultationContext dbContext)
 {
     _DBContext = dbContext;
 }
Exemplo n.º 3
0
 public HospitalProfileRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 4
0
 public ConsultationReportRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 5
0
 public ServiceTypeRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 6
0
 public MockExamModuleRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 7
0
 public MockConsultationDictionaryRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 8
0
 public DAMHospitalRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 9
0
 public MockPatientCaseRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 10
0
 public UserManagementService(IRisProContext risProContext, IConsultationContext dbContext, ILoginUserService loginUserService)
 {
     _RisProContext    = risProContext;
     _DBContext        = dbContext;
     _LoginUserService = loginUserService;
 }
Exemplo n.º 11
0
 public DAMInfoRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 12
0
 public SysConfigRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 13
0
 public NotificationService(ILoginUserService loginUserService, IConsultationContext dbContext)
 {
     _LoginUserService = loginUserService;
     _DBContext        = dbContext;
 }
Exemplo n.º 14
0
 public ShortcutRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 15
0
 public MockEMRItemDetailRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 16
0
 public EMRItemRepository(IConsultationContext context)
     : base(context)
 {
 }
Exemplo n.º 17
0
 public PersonPatientCaseRepository(IConsultationContext context)
     : base(context)
 {
 }