示例#1
0
 public IEnumerable <LeagueViewModel> GetAll()
 {
     return(mapper.MapDomainToModel(leagueRepository.GetAll()));
 }
示例#2
0
        public TeamViewModel GetTeamById(int id)
        {
            var team = repository.Get(id);

            return(mapper.MapDomainToModel(team));
        }