예제 #1
0
 public EntityService()
 {
     _appointmentService = new AppointmentRepo();
     _cityService        = new CityRepo();
     _hospitalService    = new HospitalRepo();
     _patientRepo        = new PatientRepo();
     _policlinicService  = new PoliclinicRepo();
     _staffRepo          = new StaffRepo();
     _titleService       = new TitleRepo();
     _townService        = new TownRepo();
     _userService        = new UserRepo();
 }
예제 #2
0
 public UcHospitalListView()
 {
     InitializeComponent();
     this.hospitalRepo = new HospitalRepo();
 }
예제 #3
0
 public HospitalController(HospitalRepo repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
예제 #4
0
 public FormCoHospitalUpate()
 {
     InitializeComponent();
     this.hospitalRepo = new HospitalRepo();
 }
예제 #5
0
 public UcHospitalInfoInput()
 {
     InitializeComponent();
     this.hospitalRepo = new HospitalRepo();
 }