public ActivitiesController(ICoursesService coursesService, ISeminarsService seminarsService,
                             ILaboratoriesService laboratoriesService, ICompanyPresentationsService companiesPresentationsService, IGenericsRepository genericsRepo)
 {
     _coursesService              = coursesService;
     _seminarsService             = seminarsService;
     _laboratoriesService         = laboratoriesService;
     _companyPresentationsService = companiesPresentationsService;
     _genericsRepo = genericsRepo;
 }
 public CompanyPresentationsController(ICompanyPresentationsService companyPresentationsService, IGenericsRepository genericsRepo)
 {
     _companyPresentationsService = companyPresentationsService;
     _genericsRepo = genericsRepo;
 }