Ejemplo n.º 1
0
 public async Task <PageStatistic> Update(PageStatistic entity)
 {
     return(_mapper.Map <PageStatistic>(await _repository.Update(_mapper.Map <PageStatisticDal>(entity))));
 }
Ejemplo n.º 2
0
 public async Task Delete(PageStatistic entity)
 {
     await _repository.Delete(_mapper.Map <PageStatisticDal>(entity));
 }