Skip to content

Instantly share code, notes, and snippets.

@joecastelo
Last active July 22, 2020 21:52
Show Gist options
  • Save joecastelo/f4bd3acabdb67c94ef8fb5bd9db616d5 to your computer and use it in GitHub Desktop.
Save joecastelo/f4bd3acabdb67c94ef8fb5bd9db616d5 to your computer and use it in GitHub Desktop.
Start point for CA Esapi plugin Runner
using EsapiEssentials.Plugin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using VMS.TPS.Common.Model.API;
[assembly: ESAPIScript(IsWriteable = true)]
namespace PluginTester
{
public class Script : ScriptBase
{
public Script()
{
}
public override void Run(PluginScriptContext context)
{
context.Patient.BeginModifications();
//Code here
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment