Ejemplo n.º 1
0
        public ActionResult Index()
        {
            var dto   = _battleService.GetAllBattleDTOs();
            var model = _mapper.Map <List <BattleViewModel> >(dto);

            return(View(model));
        }
Ejemplo n.º 2
0
        public string GetBattlesForTable()
        {
            var dto   = _battleService.GetAllBattleDTOs();
            var model = _mapper.Map <List <BattleViewModel> >(dto);

            return(JsonConvert.SerializeObject(model));
        }