Exemplo n.º 1
0
        public PartialViewResult BaseScoreCards(ScoreCardsViewModel model)
        {
            model.BaseScoreCards = this.baseScoreCardRepository.Find(model.ToFilter());

            return this.PartialView(model);
        }
Exemplo n.º 2
0
        public PartialViewResult ValuationScoreCards(ScoreCardsViewModel model)
        {
            model.ValuationScoreCards = this.valuationScoreCardRepository.Find(model.ToFilter());

            return this.PartialView(model);
        }