Пример #1
0
 public SupplementaryExam(AircrewEntity aircrewEntity, int year)
     : this()
 {
     this.aircrewEntity         = aircrewEntity;
     this.DataContext           = this;
     this.physicalExamMaxFacade = new PhysicalExamMaxFacade(this);
     this.InitData(year);
 }
 public OralCavity(AircrewEntity aircrewEntity, int year)
     : this()
 {
     this.aircrewEntity         = aircrewEntity;
     this.physicalExamMaxFacade = new PhysicalExamMaxFacade(this);
     this.DataContext           = this;
     this.InitData(year);
 }
 public Neuropsychiatry(AircrewEntity aircrewEntity, int year)
     : this()
 {
     this.aircrewEntity          = aircrewEntity;
     this.DataContext            = this;
     this.aviationMedicineFacade = new AviationMedicineFacade(this);
     this.physicalExamMaxFacade  = new PhysicalExamMaxFacade(this);
     this.InitData(year);
 }
 public PhysicalExamMain(AircrewEntity aircrewEntity)
     : this()
 {
     currentAircrew                   = aircrewEntity;
     this.DataContext                 = this;
     this.Year                        = DateTime.Now.Year;
     this.physicalExamMaxFacade       = new PhysicalExamMaxFacade(this);
     this.medicalIdentificationFacade = new MedicalIdentificationFacade(this);
     this.PropertyChanged            += PhysicalExamMain_PropertyChanged;
 }
Пример #5
0
 public ConclusionsPhysical(AircrewEntity aircrewEntity, int year)
     : this()
 {
     this.aircrewEntity         = aircrewEntity;
     this.physicalExamMaxFacade = new PhysicalExamMaxFacade(this);
     this.commonDiseaseFacade   = new CommonDiseaseFacade(this);
     this.InitData(year);
     this.DataContext      = this;
     this.PropertyChanged += ConclusionsPhysical_PropertyChanged;
 }
 public PhysicalExamAlarm()
 {
     InitializeComponent();
     physicalExamMaxFacade = new PhysicalExamMaxFacade(this);
     InitData();
 }