Exemplo n.º 1
0
 public void Add(League league)
 {
     _leagueRepository.Add(league);
 }
Exemplo n.º 2
0
 public bool Create(LeagueDTO entity)
 {
     return(repository.Add(ObjectMapper.Mapper.Map <League>(entity)));
 }