Example #1
0
 public StudentsServices(IStudentRepository studentRepository, IEncryption encryption, IMajorsServices majorServices, ITextDocumentServices textDocumentServices, IHourRepository hourRepository)
 {
     _studentRepository    = studentRepository;
     _encryption           = encryption;
     _majorServices        = majorServices;
     _textDocumentServices = textDocumentServices;
     _hourRepository       = hourRepository;
 }
Example #2
0
 public ProjectFinalReport(IProjectRepository projectRepository, ISectionRepository sectionRepository, IStudentRepository studentRepository, ITextDocumentServices textDocumentServices, IDownloadbleFile downloadbleFile, ISectionProjectRepository sectionProjectRepository)
 {
     _projectRepository        = projectRepository;
     _sectionRepository        = sectionRepository;
     _studentRepository        = studentRepository;
     _textDoucmentServices     = textDocumentServices;
     _downloadbleFile          = downloadbleFile;
     _sectionProjectRepository = sectionProjectRepository;
 }
Example #3
0
 public ProjectServices(IProjectRepository projectRepository, ISectionRepository sectionRepository,
                        IStudentRepository studentRepository, ITextDocumentServices textDocumentServices, IMajorRepository majorRepository, IClassRepository classRepository, IPeriodRepository periodRepository, ISectionProjectRepository sectionProjectRepository)
 {
     _projectRepository        = projectRepository;
     _sectionRepository        = sectionRepository;
     _studentRepository        = studentRepository;
     _textDocumentServices     = textDocumentServices;
     _majorRepository          = majorRepository;
     _classRepository          = classRepository;
     _periodRepository         = periodRepository;
     _sectionProjectRepository = sectionProjectRepository;
     _periods.Add(1);
     _periods.Add(2);
     _periods.Add(3);
     _periods.Add(5);
 }
Example #4
0
 public FiniquitoReport(ITextDocumentServices textDocumentServices, IStudentRepository studentRepository, IDownloadbleFile downloadbleFile)
 {
     _textDoucmentServices = textDocumentServices;
     _studentRepository    = studentRepository;
     _downloadbleFile      = downloadbleFile;
 }