public CustomerDTO Get(int id) { var customer = _customerRepository.Get(id); return(_customerMapper.MapperToDTO(customer)); }