public ActionResult DeleteProfessorIndicator(string Id)
        {
            var indicatorId = Convert.ToInt32(Id);

            _scoreService.DeleteMany(x => x.Indicator.Id == indicatorId);

            _indicatorService.Delete(_indicatorService.Get(g => g.Id == indicatorId));

            return(Json(new { }));
        }