Inheritance: InstitutionalAgreementFieldValue
 public void HasGetSet()
 {
     var value = new InstitutionalAgreementConfiguration();
     var entity = new InstitutionalAgreementTypeValue { Configuration = value };
     entity.ShouldNotBeNull();
     entity.Configuration.ShouldEqual(value);
 }
 public void HasGetSet()
 {
     const int value = 1;
     var entity = new InstitutionalAgreementTypeValue { ConfigurationId = value };
     entity.ShouldNotBeNull();
     entity.ConfigurationId.ShouldEqual(value);
 }
            public void HasGetSet()
            {
                var value  = new InstitutionalAgreementConfiguration();
                var entity = new InstitutionalAgreementTypeValue {
                    Configuration = value
                };

                entity.ShouldNotBeNull();
                entity.Configuration.ShouldEqual(value);
            }
            public void HasGetSet()
            {
                const int value  = 1;
                var       entity = new InstitutionalAgreementTypeValue {
                    ConfigurationId = value
                };

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