public CustomerOrganizationsController(ILogger <CustomerOrganizationsController> logger,
                                        ICustomerOrganizationService userService)
 {
     this.logger = logger;
     this.customerOrganizationService = userService;
 }
예제 #2
0
 public CustomerOrganizationController(ICustomerOrganizationService customerOrganizationServices)
 {
     _customerOrganizationServices = customerOrganizationServices;
 }