Beispiel #1
0
        public void TestDeleteProfileEducation_ItShouldSetAddProfileEducation_Success()
        {
            var mm = _programService.GetCompletedProgramAsync(15922).Result;

            var id   = 8858;
            var data = _assessmentService.DeleteProfileEducationAsync(id).Result;

            Assert.IsNotNull(data);
        }
Beispiel #2
0
        public async Task <IActionResult> DeleteProfileEducationAsync(int educationId)
        {
            var result = await _service.DeleteProfileEducationAsync(educationId);

            return(Ok(result));
        }