Esempio n. 1
0
 public EditUseCase(IExistByIdQuery existByIdQuery, IEditContactCommand editContactCommand)
 {
     _existByIdQuery     = existByIdQuery;
     _editContactCommand = editContactCommand;
 }
Esempio n. 2
0
 public DeleteUseCase(IExistByIdQuery existByIdQuery, IDeleteContactCommand deleteCustomerCommand)
 {
     _existByIdQuery        = existByIdQuery;
     _deleteCustomerCommand = deleteCustomerCommand;
 }