public CustomerSummaryController(ILogger <CustomerSummaryController> logger, ICustomerSummaryService customerSummaryService)
 {
     _logger = logger;
     _customerSummaryService = customerSummaryService;
 }
 public CustomerSummaryController(ICustomerSummaryService customerSummaryService)
 {
     _customerSummaryService = customerSummaryService;
 }