Esempio n. 1
0
 public ContactDetailsPageModel(IRestServices _restService, IDoctorServices _doctorService, IHStructServices _hstructService, IDialogService _dialogService)
 {
     this._doctorService  = _doctorService;
     this._hstructService = _hstructService;
     this._restService    = _restService;
     this._dialogService  = _dialogService;
 }
Esempio n. 2
0
 public FavPageModel(IDocumentServices _documentServices, IDoctorServices _doctorServices, IHStructServices _hStructServices, IRestServices _restServices)
 {
     this._doctorServices   = _doctorServices;
     this._documentServices = _documentServices;
     this._hStructServices  = _hStructServices;
     this._restServices     = _restServices;
 }
Esempio n. 3
0
 public HstructListPageModel(IDialogService _dialogServices, IRestServices _restServices, IDoctorServices _doctorServices, IHStructServices _hStructServices)
 {
     this._restServices    = _restServices;
     this._doctorServices  = _doctorServices;
     this._hStructServices = _hStructServices;
     this._dialogServices  = _dialogServices;
     structs = new List <hList>();
 }
 public DoctorsListPageModel(IDialogService _dialogServices, IRestServices _restServices, IDoctorServices _doctorServices, IHStructServices _hStructServices)
 {
     this._restServices    = _restServices;
     this._doctorServices  = _doctorServices;
     this._hStructServices = _hStructServices;
     this._dialogServices  = _dialogServices;
     doctors = new List <DocList>();
 }
Esempio n. 5
0
        //public bool visible { get; set; }

        public LoginPopupPageModel(IRestServices _restServices, IDialogService _dialogService, IUserServices _userServices, IHStructServices _hstructServices, IDoctorServices _doctorServices, IDocumentServices _documentServices)
        {
            this._dialogService    = _dialogService;
            this._restServices     = _restServices;
            this._userServices     = _userServices;
            this._hstructServices  = _hstructServices;
            this._doctorServices   = _doctorServices;
            this._documentServices = _documentServices;
        }
Esempio n. 6
0
 public InscriptionPageModel(IDialogService _dialogservices, IRestServices _restService, IUserServices _userServices, IHStructServices _hstructServices, IDoctorServices _doctorServices, IDocumentServices _documentServices)
 {
     this._dialogservices   = _dialogservices;
     this._RestService      = _restService;
     this._userServices     = _userServices;
     this._hstructServices  = _hstructServices;
     this._doctorServices   = _doctorServices;
     this._documentServices = _documentServices;
 }
 public AddHstructPageModel(IRestServices _restServices, IHStructServices _hStructServices, IDialogService _dialogSservices)
 {
     this._dialogSservices = _dialogSservices;
     this._hStructServices = _hStructServices;
     this._restServices    = _restServices;
 }
Esempio n. 8
0
 public ContactPageModel(IRestServices _restServices, IDoctorServices _doctorServices, IHStructServices _hStructServices)
 {
     this._restServices    = _restServices;
     this._doctorServices  = _doctorServices;
     this._hStructServices = _hStructServices;
 }