public OperationWithDualConstructorDependency(DependencyWithTwoConstructors dependency)
 {
     if (dependency == null)
     {
         throw new ArgumentException();
     }
 }
 public OperationWithDualConstructorDependency(DependencyWithTwoConstructors dependency)
 {
     if (dependency == null) throw new ArgumentException();
 }