public ActionResult Register(CustomerPricingQueryModel customerPricingQueryModel)
 {
     var pricingQuery = _customerMapper.GenerateQuery(customerPricingQueryModel);
     _pricingQueryRepository.RegisterPricingQuery(pricingQuery);
     _emailingService.SendEmailToTheSalesTeam(pricingQuery);
     return View("ThankYou");
 }
 public PricingQuery GenerateQuery(CustomerPricingQueryModel customerPricingQueryModel)
 {
     throw new System.NotImplementedException();
 }