Ejemplo n.º 1
0
 public AddressCandidateServiceTest()
 {
     TecAppContext           = new TecAppContext();
     AddressCandidateService = new AddressCandidateService(TecAppContext);
     AddressService          = new AddressService.AddressService(TecAppContext);
     CandidateService        = new EmployeeService.CandidateService(TecAppContext);
 }
Ejemplo n.º 2
0
 public CandidateSessionServiceTest()
 {
     TecAppContext           = new TecAppContext();
     CandidateService        = new EmployeeService.CandidateService(TecAppContext);
     SessionService          = new SessionService.SessionService(TecAppContext);
     CandidateSessionService = new CandidateSessionService(TecAppContext);
 }
Ejemplo n.º 3
0
 public CandidateQualificationServiceTest()
 {
     TecAppContext = new TecAppContext();
     CandidateQualificationService = new CandidateQualificationService(TecAppContext);
     CandidateService      = new EmployeeService.CandidateService(TecAppContext);
     QualificationsService = new QualificationsService.QualificationsService(TecAppContext);
 }
Ejemplo n.º 4
0
 public PlacementServiceTest()
 {
     TecAppContext    = new TecAppContext();
     PlacementService = new PlacementService(TecAppContext);
     OpeningsService  = new OpeningsService.OpeningsService(TecAppContext);
     CandidateService = new EmployeeService.CandidateService(TecAppContext);
 }
Ejemplo n.º 5
0
        public EmptyDatabase()
        {
            var context = new TecAppContext();

            AddressService        = new AddressService.AddressService(context);
            CandidateService      = new EmployeeService.CandidateService(context);
            QualificationsService = new QualificationsService.QualificationsService(context);
            CourseService         = new CourseService.CourseService(context);
            CompanyService        = new CompanyService.CompanyService(context);
            JobService            = new JobService.JobService(context);
            SessionService        = new SessionService.SessionService(context);
            LocationService       = new LocationService.LocationService(context);
            OpeningService        = new OpeningsService.OpeningsService(context);
            PlacementService      = new PlacementService.PlacementService(context);
            JobHistoryService     = new JobHistoryService.JobHistoryService(context);

            JobHistoryCompanyService              = new JobHistoryCompanyService.JobHistoryCompanyService(context);
            SessionLocationService                = new SessionLocationService.SessionLocationService(context);
            JobHistoryJobService                  = new JobHistoryJobService.JobHistoryJobService(context);
            AddressCandidateService               = new AddressCandidateService.AddressCandidateService(context);
            CandidateQualificationService         = new CandidateQualificationService.CandidateQualificationService(context);
            PrerequisitesForCourseService         = new PrerequisitesForCourseService.PrerequisitesForCourseService(context);
            QualificationDevelopedByCourseService =
                new QualificationDevelopedByCourseService.QualificationDevelopedByCourseService(context);
        }
Ejemplo n.º 6
0
        public InitializeDatabase()
        {
            var context = new TecAppContext();

            AddressService        = new AddressService.AddressService(context);
            CandidateService      = new EmployeeService.CandidateService(context);
            QualificationsService = new QualificationsService.QualificationsService(context);
            CourseService         = new CourseService.CourseService(context);
            CompanyService        = new CompanyService.CompanyService(context);
            JobService            = new JobService.JobService(context);
            SessionService        = new SessionService.SessionService(context);
            LocationService       = new LocationService.LocationService(context);
            OpeningService        = new OpeningsService.OpeningsService(context);
            PlacementService      = new PlacementService.PlacementService(context);
            JobHistoryService     = new JobHistoryService.JobHistoryService(context);

            SessionLocationService = new SessionLocationService.SessionLocationService(context);
            JobHistoryJobService   = new JobHistoryJobService.JobHistoryJobService(context);
        }