public static AnchorVisTest Make(AnchorId id)
            {
                AnchorVisTest ret = new AnchorVisTest()
                {
                    id = id
                };

                return(ret);
            }
            public bool Create(AnchorId source, out AnchorVisTest resource)
            {
                int idAsInt = (int)source;

                if (0 == (idAsInt & 1))
                {
                    resource = new AnchorVisTest()
                    {
                        id = source
                    };
                    return(false);
                }
                resource = Make(source);
                return(true);
            }
 public void Destroy(AnchorVisTest target)
 {
 }
 public void Update(AnchorId source, AnchorVisTest target)
 {
     Assert.AreEqual(source, target.id);
 }