Example #1
0
        protected static void CreateIndustryPlacementRecord(string uln)
        {
            var profileId = SqlQueries.ReturnRegistrationProfileForLrs(uln);
            var pathwayId = SqlQueries.ReturnRegistrationPathwayForLrs(profileId);

            SqlQueries.CreateIndustryPlacement(pathwayId, 1);
        }
        public void CreateDbRegistationNonLrsWithEMAndIP(string uln)
        {
            var profileId = SqlQueries.CreateRegistrationProfileForNonLrsWithEM(uln);
            var pathwayId = SqlQueries.CreateRegistrationPathwayForLrs(profileId);

            SqlQueries.CreateRegSpecialismForLrs(pathwayId);
            SqlQueries.CreateIndustryPlacement(pathwayId, 1);
        }
Example #3
0
        protected void CreateRegForBarnsleyNoCoreGrade_Withdrawn_IndPlacementNotComplete(string uln)
        {
            var profileId = SqlQueries.CreateRegistrationProfileForNonLrsWithEM(uln);
            var pathwayId = SqlQueries.CreateWithdrawnRegistrationPathwayRecord(profileId);

            SqlQueries.CreateRegSpecialism(pathwayId);
            SqlQueries.CreateIndustryPlacement(pathwayId, 3);
        }
Example #4
0
        protected static void CreateLrsRegWithEmAndIpForDudley(string uln)
        {
            var profileId = SqlQueries.CreateRegistrationProfileForLrsWithEM(uln);
            var pathwayId = SqlQueries.CreateRegistrationPathwayForDudley(profileId);

            SqlQueries.CreateRegSpecialismForLrs(pathwayId);
            SqlQueries.CreateQualificationAcheivedForLrs(profileId);
            SqlQueries.CreateIndustryPlacement(pathwayId, 1);
        }
        public void CreateDbRegWithIpForLrs(string uln, int status)
        {
            var profileId = SqlQueries.CreateRegistrationProfileForLrsWithEM(uln);
            var pathwayId = SqlQueries.CreateRegistrationPathwayForLrs(profileId);

            SqlQueries.CreateRegSpecialismForLrs(pathwayId);
            var pathwayAssessmentId = SqlQueries.CreatePathwayAssessment(pathwayId);

            SqlQueries.CreatePathwayResult(pathwayAssessmentId);
            SqlQueries.CreateQualificationAcheivedForLrs(profileId);
            SqlQueries.CreateIndustryPlacement(pathwayId, status);
        }
Example #6
0
        protected static void CreateDbRegistationForNonLrsCombination(string uln, string EmStatus, string IpStatus)
        {
            var ipStat = IpStatus switch
            {
                "IP completed" => 1,
                "IP completed with special consideration" => 2,
                _ => 3
            };

            switch (EmStatus)
            {
            case "MathEng achieved the minimum standard":
                var profileId = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "0", "1", "NULL", "1");
                var pathwayId = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId);
                SqlQueries.CreateIndustryPlacement(pathwayId, ipStat);
                var pathwayAssessmentId = SqlQueries.CreatePathwayAssessment(pathwayId);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId);
                break;

            case "MathEng achieved the minimum standard for learners with SEND":
                var profileId1 = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "0", "1", "1", "1");
                var pathwayId1 = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId1);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId1);
                SqlQueries.CreateIndustryPlacement(pathwayId1, ipStat);
                var pathwayAssessmentId1 = SqlQueries.CreatePathwayAssessment(pathwayId1);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId1);
                break;

            case "MathEng not achieved the minimum standard":
                var profileId4 = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "0", "0", "NULL", "1");
                var pathwayId4 = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId4);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId4);
                SqlQueries.CreateIndustryPlacement(pathwayId4, ipStat);
                var pathwayAssessmentId4 = SqlQueries.CreatePathwayAssessment(pathwayId4);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId4);
                break;
            }
        }
Example #7
0
        protected static void CreateDbRegistationForLrsCombination(string uln, string EmStatus, string IpStatus)
        {
            var ipStat = IpStatus switch
            {
                "IP completed" => 1,
                "IP completed with special consideration" => 2,
                _ => 3
            };

            switch (EmStatus)
            {
            case "MathEng not Achieved Min Standard Math-A Eng-NA":
                var profileId = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "NULL", "0", "NULL", "0");
                var pathwayId = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId);
                SqlQueries.CreateQualificationAcheivedForLrsMathsAEnglishNA(profileId);
                SqlQueries.CreateIndustryPlacement(pathwayId, ipStat);
                var pathwayAssessmentId = SqlQueries.CreatePathwayAssessment(pathwayId);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId);
                break;

            case "MathEng not Achieved Min Standard Math-NA Eng-A":
                var profileId1 = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "NULL", "0", "NULL", "0");
                var pathwayId1 = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId1);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId1);
                SqlQueries.CreateQualificationAcheivedForLrsMathsAEnglishNA(profileId1);
                SqlQueries.CreateIndustryPlacement(pathwayId1, ipStat);
                var pathwayAssessmentId1 = SqlQueries.CreatePathwayAssessment(pathwayId1);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId1);
                break;

            case "MathEng not Achieved Min Standard Math-NA Eng-NA":
                var profileId4 = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "NULL", "0", "NULL", "0");
                var pathwayId4 = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId4);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId4);
                SqlQueries.CreateQualificationAcheivedForLrsMathsNaEnglishNa(profileId4);
                SqlQueries.CreateIndustryPlacement(pathwayId4, ipStat);
                var pathwayAssessmentId4 = SqlQueries.CreatePathwayAssessment(pathwayId4);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId4);
                break;

            case "MathEng Achieved with SEND":
                var profileId2 = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "1", "1", "NULL", "0");
                var pathwayId2 = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId2);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId2);
                SqlQueries.CreateQualificationAcheivedForLrsSEND(profileId2);
                SqlQueries.CreateIndustryPlacement(pathwayId2, ipStat);
                var pathwayAssessmentId2 = SqlQueries.CreatePathwayAssessment(pathwayId2);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId2);
                break;

            case "MathEng Achieved Min Standard":
                var profileId3 = SqlQueries.CreateRegistrationProfileForLrsCombination(uln, "NULL", "1", "NULL", "0");
                var pathwayId3 = SqlQueries.CreateRegistrationPathwayForLrsCombination(profileId3);
                SqlQueries.CreateRegSpecialismForLrs(pathwayId3);
                SqlQueries.CreateQualificationAcheivedForLrs(profileId3);
                SqlQueries.CreateIndustryPlacement(pathwayId3, ipStat);
                var pathwayAssessmentId3 = SqlQueries.CreatePathwayAssessment(pathwayId3);
                SqlQueries.CreatePathwayResult(pathwayAssessmentId3);
                break;
            }
        }