Esempio n. 1
0
 public string Edit(PingServiceViewModel viewModel)
 {
     var entity = _pingServiceMappingService.MapToEntity(viewModel);
     return _pingRepository.Update(entity);
 }
 public PingService MapToEntity(PingServiceViewModel view)
 {
     return Mapper.Map<PingServiceViewModel, PingService>(view);
 }