Exemplo n.º 1
0
 public void UnitOfWorkWithAbstractRefDependency(
     out SomeAbstractDependency param,
     SomeAbstractDependency other)
 {
     _ = other ?? throw new ArgumentNullException();
     throw new NotImplementedException();
 }
Exemplo n.º 2
0
 public void UnitOfWorkWithAbstractRefDependency(ref SomeAbstractDependency param)
 {
     Guard.AgainstNull(param, nameof(param));
     throw new NotImplementedException();
 }