public ResultError(IErrorCommon errorConverting)
     : this(errorConverting.AsEnumerable())
 {
 }
 public ResultValue(IErrorCommon error)
     : this(error.AsEnumerable())
 {
 }
Beispiel #3
0
 public ResultCollection(IErrorCommon error)
     : this(Enumerable.Empty <T>(), error.AsEnumerable())
 {
 }