예제 #1
0
 public CustomersController(ICustomersHandler CustomersHandler)
 {
     //_DBContext = DBContext;
     _CustomersHandler = CustomersHandler;
 }
 public CustomersController(ICustomersHandler customersHandler)
 {
     _customersHandler = customersHandler
                         ?? throw new ArgumentNullException(nameof(customersHandler));
 }