ATUL_v1.AtulBusinessLogic.AttachProcessSubProcess C# (CSharp) Method

AttachProcessSubProcess() public method

Creates the sub process.
public AttachProcessSubProcess ( System.Int64 AtulProcessID, System.Int64 AtulSubProcessID, int ProcessSubprocessSortOrder, string NotificationIdentifier, int ResponsibilityOf, int DeadlineOffset, int CreatedBy ) : bool
AtulProcessID System.Int64 The atul process ID.
AtulSubProcessID System.Int64 The atul sub process ID.
ProcessSubprocessSortOrder int The process subprocess sort order.
NotificationIdentifier string The notification identifier.
ResponsibilityOf int The responsibility of ID.
DeadlineOffset int The deadline offset.
CreatedBy int The created by ID.
return bool
        public bool AttachProcessSubProcess(Int64 AtulProcessID, Int64 AtulSubProcessID, int ProcessSubprocessSortOrder, string NotificationIdentifier, int ResponsibilityOf, int DeadlineOffset, int CreatedBy)
        {
            bool success = false;
            Atul_v1Data adb = new Atul_v1Data();
            success = adb.AttachProcessSubProcess(AtulProcessID, AtulSubProcessID, ProcessSubprocessSortOrder, NotificationIdentifier, ResponsibilityOf, DeadlineOffset, CreatedBy);
            return success;
        }
AtulBusinessLogic