Example #1
0
        ///<summary>
        ///  Update the Typed Price Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, Price mock)
        {
            PriceTest.UpdateMockInstance_Generated(tm, mock);

            // make any alterations necessary
            // (i.e. for DB check constraints, special test cases, etc.)
            SetSpecialTestData(mock);
        }
Example #2
0
        ///<summary>
        ///  Returns a Typed Price Entity with mock values.
        ///</summary>
        static public Price CreateMockInstance(TransactionManager tm)
        {
            // get the default mock instance
            Price mock = PriceTest.CreateMockInstance_Generated(tm);

            // make any alterations necessary
            // (i.e. for DB check constraints, special test cases, etc.)
            SetSpecialTestData(mock);

            // return the modified object
            return(mock);
        }