예제 #1
0
        //Provides the clients to submit jobs or commands for jobs

        /// <summary>
        /// Add a method and parameters into the job table.
        /// Ref and out parameters are not supported.
        /// </summary>
        /// <param name="methodCall">Expression body for method call </param>
        /// <returns>JobID of the added job.</returns>
        public string Add(Expression <Action> methodCall)
        {
            return(jobDAL.Add(null, null, null, null, methodCall));
        }