public JustificationRegisterView()
        {
            InitializeComponent();

            justificationControl     = new JustificationControl();
            justificationViewControl = new JustificationViewControl();

            DataContext = justificationViewControl;
        }
Exemple #2
0
        public AddJustificationMessageDialog()
        {
            InitializeComponent();

            DataContext = new AddJustificationViewControl();

            justificationControl = new JustificationControl();

            fillCBJustification();
        }
Exemple #3
0
        public AbsenceRegisterView()
        {
            InitializeComponent();

            absenceControl       = new AbsenceControl();
            employeeControl      = new EmployeeControl();
            justificationControl = new JustificationControl();
            absenceViewControl   = new AbsenceViewControl();

            DataContext = absenceViewControl;

            fillCBEmployee();
            fillCBJustification();
        }
Exemple #4
0
        public NewAbsenceModal(Employee employee)
        {
            InitializeComponent();

            DataContext = new AbsenceViewControl();

            absenceControl       = new AbsenceControl();
            employeeControl      = new EmployeeControl();
            justificationControl = new JustificationControl();

            this.employee = employee;

            fillCBEmployee();
            fillCBJustification();
        }