Created
April 27, 2009 18:16
-
-
Save anonymous/102630 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
public class TransformedResult | |
{ | |
public IDataSource dataSource; | |
public TransformError errorList; | |
public bool HasErrors { | |
get { return errorList.HasErrors(); } | |
} | |
} | |
public class TransformError | |
{ | |
public List<string> errorList = new List<string>(); | |
public bool HasErrors { | |
get { return (ErrorList.Count > 0 ? true : false); } | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment