Exemple #1
0
 public bool Delete(InstallationDeleteCommand command)
 {
     return(TracedOperation.CallSync
            (
                _logger,
                InstallationOperationType.DeleteInstallation,
                command,
                () => _repository.DeleteById(command.Id)
            ));
 }
Exemple #2
0
 public bool Delete(InstallationDeleteCommand command)
 {
     throw new NotImplementedException();
 }
 public bool Delete(InstallationDeleteCommand command)
 => _core.Delete(command);