public EditUseCase(IExistByIdQuery existByIdQuery, IEditContactCommand editContactCommand) { _existByIdQuery = existByIdQuery; _editContactCommand = editContactCommand; }
public DeleteUseCase(IExistByIdQuery existByIdQuery, IDeleteContactCommand deleteCustomerCommand) { _existByIdQuery = existByIdQuery; _deleteCustomerCommand = deleteCustomerCommand; }