ATUL_v1.AtulBusinessLogic.GetProcessScheduleByProcessID C# (CSharp) Method

GetProcessScheduleByProcessID() public method

public GetProcessScheduleByProcessID ( long ProcessID ) : Schedule
ProcessID long
return Schedule
        public Schedule GetProcessScheduleByProcessID(long ProcessID)
        {
            Schedule s;
            Atul_v1Data adb = new Atul_v1Data();
            s = adb.GetProcessScheduleByProcessID(ProcessID);
            return s;
        }

Usage Example

Ejemplo n.º 1
0
 public Schedule GetProcessScheduleByProcessID(string ProcessID)
 {
     Schedule s;
     long AtulProcessID = Convert.ToInt64(ProcessID);
     AtulBusinessLogic adb = new AtulBusinessLogic();
     s = adb.GetProcessScheduleByProcessID(AtulProcessID);
     return s;
 }
All Usage Examples Of ATUL_v1.AtulBusinessLogic::GetProcessScheduleByProcessID
AtulBusinessLogic