Created
March 24, 2014 15:15
-
-
Save mgroves/9742176 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| public abstract class ServiceBase | |
| { | |
| public Action<string> AddValidationError { get; set; } | |
| } | |
| public class TerritoryService : ServiceBase, ITerritoryService | |
| { | |
| public int DoSomething(int id) | |
| { | |
| // do something | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment