Creating a new Turbo Import case |
How to create a new case using the Integration Library
This example creates a new case.
using EdaIntegrationContract; using EdaIntegrationContract.Case; class Sample { public static void Main() { // Initialize the environment var edaIntegration = new EdaIntegration().ConnectToLawTurboImport(); // Create the case // Note that the returned case has additional values filled in from the // creation process such as its id and date created ICase tiCase = edaIntegration.Cases.Create("My New Case"); // Display some basic information about the new case Console.WriteLine("Uuid: " + tiCase.Id); Console.WriteLine("Name: " + tiCase.Name); Console.WriteLine("Directory: " + tiCase.CaseDirectory); } }
Id: 0504c9ad-bb89-445a-a2f4-045cfb459db2 Name: My New Case Directory: \\NetworkDrive\LAWHome\cases\My New Case