Skip to content

Instantly share code, notes, and snippets.

@mgroves
Created March 24, 2014 15:15
Show Gist options
  • Select an option

  • Save mgroves/9742176 to your computer and use it in GitHub Desktop.

Select an option

Save mgroves/9742176 to your computer and use it in GitHub Desktop.
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