Esempio n. 1
0
 public CustomerUseCaseTest(ICustomerCreateUseCase customerCreateUseCase, ICustomerGetAllUseCase customerGetAllUseCase)
 {
     this.customerCreateUseCase = customerCreateUseCase;
     this.customerGetAllUseCase = customerGetAllUseCase;
 }
 public Handler(ICustomerCreateUseCase customerCreateUseCase, INotifications notifications)
 {
     this.customerCreateUseCase = customerCreateUseCase;
     this.notifications         = notifications;
 }