Esempio n. 1
0
 public void HasGetSet()
 {
     var value = new EstablishmentContactInfo();
     var entity = new Establishment { PartnerContactInfo = value };
     entity.ShouldNotBeNull();
     entity.PartnerContactInfo.ShouldEqual(value);
 }
Esempio n. 2
0
 public void HasGetSet()
 {
     var value = new List<Affiliation> { new Affiliation() };
     var entity = new Establishment { Affiliates = value };
     entity.ShouldNotBeNull();
     entity.Affiliates.ShouldEqual(value);
 }
Esempio n. 3
0
            public void HasGetSet()
            {
                var value  = new EstablishmentContactInfo();
                var entity = new Establishment {
                    PartnerContactInfo = value
                };

                entity.ShouldNotBeNull();
                entity.PartnerContactInfo.ShouldEqual(value);
            }
Esempio n. 4
0
            public void HasGetSet()
            {
                var value = new List <Affiliation> {
                    new Affiliation()
                };
                var entity = new Establishment {
                    Affiliates = value
                };

                entity.ShouldNotBeNull();
                entity.Affiliates.ShouldEqual(value);
            }