Пример #1
0
        /// <summary>
        /// Create a new TestOperation object.
        /// </summary>
        /// <param name="ID">Initial value of Id.</param>
        public static TestOperation CreateTestOperation(int ID)
        {
            TestOperation testOperation = new TestOperation();

            testOperation.Id = ID;
            return(testOperation);
        }
Пример #2
0
 /// <summary>
 /// Create a new TestOperation object.
 /// </summary>
 /// <param name="ID">Initial value of Id.</param>
 public static TestOperation CreateTestOperation(int ID) {
     TestOperation testOperation = new TestOperation();
     testOperation.Id = ID;
     return testOperation;
 }
Пример #3
0
 /// <summary>
 /// There are no comments for TestOperations in the schema.
 /// </summary>
 public void AddToTestOperations(TestOperation testOperation)
 {
     base.AddObject("TestOperations", testOperation);
 }
Пример #4
0
 /// <summary>
 /// There are no comments for TestOperations in the schema.
 /// </summary>
 public void AddToTestOperations(TestOperation testOperation) {
     base.AddObject("TestOperations", testOperation);
 }