public DisciplinasViewModel()
        {
            Disc = new AppFactory().NewDisciplina();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
        public SituacoesViewModel()
        {
            Sit = new AppFactory().NewSituacao();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
예제 #3
0
        public FaixasViewModel()
        {
            Fxa = new AppFactory().NewFaixa();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
예제 #4
0
        public CategoriasViewModel()
        {
            Cat = new AppFactory().NewCategoria();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
예제 #5
0
        public TurmasViewModel()
        {
            Turm = new AppFactory().NewTurma();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
        public NiveisViewModel()
        {
            Niv = new AppFactory().NewNivel();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
        public BoletimDiarioViewModel(BaseSingleton baseSingleton)
        {
            Base_ = baseSingleton;
            Falta = new AppFactory().NewFalta();

            MouseDoubleClickCommand = new RelayCommand(CurrentCellSelected);
            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }
        public ProfessoresViewModel(BaseSingleton baseSingleton)
        {
            Base_ = baseSingleton;

            MouseDoubleClickCommand = new RelayCommand(CurrentCellSelected);
            Prof = new AppFactory().NewProfessor();

            AppRibbon.SetFocus("tabOperacoesCadastro");

            FillCollection();
        }