Exemplo n.º 1
0
 public Dashboard()
 {
     InitializeComponent();
     _context              = new LTIContext();
     PrintService          = new PrintService();
     StudentsService       = new StudentsService();
     SubjectsService       = new SubjectsService();
     TeachersService       = new TeachersService();
     TrimestresService     = new TrimestresService();
     HistoryStudentService = new HistoryStudentsService();
     PdfService            = new PdfService();
     FileService           = new FileService();
 }
Exemplo n.º 2
0
 public StudentService(LTIContext ctx)
 {
     _context = ctx;
 }
Exemplo n.º 3
0
 public AddNorma(LTIContext ctx)
 {
     InitializeComponent();
     _context = ctx;
 }
Exemplo n.º 4
0
 public TeachersService()
 {
     _context = new LTIContext();
 }
Exemplo n.º 5
0
 public SubjectsService()
 {
     _context = new LTIContext();
 }
Exemplo n.º 6
0
 public ModifyTrimestre(LTIContext ctx)
 {
     InitializeComponent();
     _context = ctx;
 }
Exemplo n.º 7
0
 public AddAdmin(LTIContext ctx)
 {
     InitializeComponent();
     _context = ctx;
 }
Exemplo n.º 8
0
 public HistoryStudentsService()
 {
     _context = new LTIContext();
 }
Exemplo n.º 9
0
 public TrimestresForm(LTIContext ctx)
 {
     InitializeComponent();
     _context = ctx;
 }
Exemplo n.º 10
0
 public TrimestresService()
 {
     _context = new LTIContext();
 }
Exemplo n.º 11
0
 public StudentsService()
 {
     _context = new LTIContext();
 }
Exemplo n.º 12
0
 public NormasForm(LTIContext ctx)
 {
     InitializeComponent();
     _context = ctx;
 }