Ejemplo n.º 1
0
 public async Task <IEnumerable <ComponenteCurricularSimplificadoDto> > ObterDisciplinasDoBimestrePlanoAnual(int ano, int bimestre, long turmaId, long componenteCurricularId)
 {
     return(repositorioObjetivosPlano.ObterDisciplinasDoBimestrePlanoAula(ano, bimestre, turmaId, componenteCurricularId));
 }
        public async Task <IEnumerable <ComponenteCurricularSimplificadoDto> > ObterDisciplinasDoBimestrePlanoAnual(DateTime dataReferencia, long turmaId, long componenteCurricularId)
        {
            int bimestre = await ObterBimestreAtual(dataReferencia, turmaId.ToString());

            return(repositorioObjetivosPlano.ObterDisciplinasDoBimestrePlanoAula(dataReferencia.Year, bimestre, turmaId, componenteCurricularId));
        }