| CustodianManagerById Method |
Retrieves a Custodian by its unique identifier
Namespace:
Law.EdaIntegration.Import
Assembly:
Law.EdaIntegration (in Law.EdaIntegration.dll) Version: 7.2
Syntax public Custodian ById(
int id
)
Parameters
- id
- Type: SystemInt32
The unique identifier of the custodian to find
Return Value
Type:
CustodianThe custodian with the supplied unique identifier
Exceptions Exception | Condition |
---|
EdaApiException | Thrown if a custodian cannot be found with the specified Id |
Examples
The following example demonstrates retrieving a custodian using its id.
using Law.EdaIntegration;
using Law.EdaIntegration.Case;
using Law.EdaIntegration.Import;
class Sample
{
public static void Main()
{
string connectionString = @"Data Source=localhost;Initial Catalog=EDA_Management;Integrated Security=False;User ID=myUserId;Password=myPassword";
EdaIntegration edaIntegration = new EdaIntegration();
edaIntegration.InitializeEnvironment(connectionString);
Case edaCase = edaIntegration.Cases.OpenCaseByName("Case 1");
Custodian custodian = edaCase.Custodians.ById(3);
Console.WriteLine("Id: {0}, Name: {1}", custodian.Id, custodian.Name);
}
}
See Also