ATUL_v1.AtulRest.AddProcessManager C# (CSharp) Method

AddProcessManager() public method

Adds a process manager. A process can have more than one manager. This method is intended to create a manager, but is generic since the typeId will change The typeid should be set in the webconfig and retreived in the logic layer
public AddProcessManager ( int AtulRemoteSystemID, int AtulUserTypeID, string RemoteSystemLoginID, string DisplayName ) : bool
AtulRemoteSystemID int The atul remote system ID.
AtulUserTypeID int The atul user type ID.
RemoteSystemLoginID string The remote system login ID.
DisplayName string The display name.
return bool
        public bool AddProcessManager(int AtulRemoteSystemID, int AtulUserTypeID, string RemoteSystemLoginID, string DisplayName)
        {
            bool success = false;
            Atul_v1Data adb = new Atul_v1Data();
            success = adb.AddProcessManager(AtulRemoteSystemID, AtulUserTypeID, RemoteSystemLoginID, DisplayName);
            return success;
        }

Same methods

AtulRest::AddProcessManager ( string AtulRemoteSystemID, string AtulUserTypeID, string RemoteSystemLoginID, string DisplayName ) : bool