Example #1
0
        public VMChoiceTime()
        {
            this.navigation             = IoC.Get <IAppointmentNavigation>();
            this.сreatingVoucherService = IoC.Get <IСreatingVoucherService>();

            day = this.сreatingVoucherService.Date;
        }
Example #2
0
        public VMChoiceDoctor()
        {
            this.baseManager            = IoC.Get <IBaseManager>();
            this.navigation             = IoC.Get <IAppointmentNavigation>();
            this.сreatingVoucherService = IoC.Get <IСreatingVoucherService>();
            this.authorization          = IoC.Get <IAuthorizationService>();
            this.weekViewerService      = IoC.Get <IWeekViewerService>();

            Patient = getCurrentPatient();

            baseManager.Doctor.TableChanged += (sender, e) => OnPropertyChanged("Doctors");
        }
Example #3
0
 public ChooseDoctorCommand(IAppointmentNavigation navigation, IСreatingVoucherService сreatingVoucherService)
 {
     this.navigation             = navigation;
     this.сreatingVoucherService = сreatingVoucherService;
 }
Example #4
0
 public VMConfirmChoice()
 {
     this.navigation             = IoC.Get <IAppointmentNavigation>();
     this.сreatingVoucherService = IoC.Get <IСreatingVoucherService>();
 }