Example #1
0
 partial void OnTagsChanging(global::WebStack.QA.Test.OData.OpenComplexType.Typed.Client.Tags value);
Example #2
0
        public static Account CreateAccount(int ID, global::WebStack.QA.Test.OData.OpenComplexType.Typed.Client.AccountInfo accountInfo, global::WebStack.QA.Test.OData.OpenComplexType.Typed.Client.Address address, global::WebStack.QA.Test.OData.OpenComplexType.Typed.Client.Tags tags)
        {
            Account account = new Account();

            account.Id = ID;
            if ((accountInfo == null))
            {
                throw new global::System.ArgumentNullException("accountInfo");
            }
            account.AccountInfo = accountInfo;
            if ((address == null))
            {
                throw new global::System.ArgumentNullException("address");
            }
            account.Address = address;
            if ((tags == null))
            {
                throw new global::System.ArgumentNullException("tags");
            }
            account.Tags = tags;
            return(account);
        }