public IEnumerable <SelfEvaluation> GetAllByObserver(int contextoAno)
        {
            var user     = _authUserAppService.AuthUser();
            var observer = _observerService.GetByChapa(user.Chapa);

            return(_selfEvaluationService.GetAllByObserver(observer, contextoAno));
        }
 public Observer GetByChapa(string chapa)
 {
     return(_observerService.GetByChapa(chapa));
 }