Skip to content

Instantly share code, notes, and snippets.

@erjjones
Created August 27, 2014 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erjjones/b6ff5b22fa6208f3b7a8 to your computer and use it in GitHub Desktop.
Save erjjones/b6ff5b22fa6208f3b7a8 to your computer and use it in GitHub Desktop.
Default Trigger Class
using System;
using ODataHQ.Code.Common;
public class Triggers : ITriggers
{
public void Create(ExecutionContext context)
{
context.Execute();
}
public void Update(ExecutionContext context)
{
context.Execute();
}
public void Delete(ExecutionContext context)
{
context.Execute();
}
public void Retrieve(ExecutionContext context)
{
context.Execute();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment