Click or drag to resize

RemWorkflowGetOrganization Method

Paperwork .Net Kütüphanesi
Verilen parametrelere göre organizasyon bilgisini getirir.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_Organization GetOrganization(
	string workitemId,
	string processId = ""
)

Parameters

workitemId
Type: SystemString
İş adımı numarası.
processId (Optional)
Type: SystemString
Süreç numarası.

Return Value

Type: a_Organization
a_Organization türünde istenilen parametrelere göre organizasyon bilgisini döner.
Examples
C#
  
            public void GetOrganization()
            {
                string workitemId = "WORKITEM_ID";
                string processId = "";
                a_Organization retval = p.rWorkflow.GetOrganization(workitemId, processId);
                Console.WriteLine(a.Name);
                Console.WriteLine(a.OrganizationId);
                Console.WriteLine(a.RootId);
                Console.WriteLine(a.Status);
                Console.ReadLine();
            }
See Also