Created
August 27, 2014 02:31
-
-
Save erjjones/b6ff5b22fa6208f3b7a8 to your computer and use it in GitHub Desktop.
Default Trigger Class
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
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