private DataTypeDiffgram AddDataType(DataTypeConfiguration dataTypeConfiguration)
        {
            var datatypeDiffgram = new DataTypeDiffgram(this, dataTypeConfiguration, serviceContext);

            DataTypes.Add(dataTypeConfiguration.Name, datatypeDiffgram);
            return(datatypeDiffgram);
        }
Exemplo n.º 2
0
 public DataTypeEnsurer(DataTypeDiffgram dataTypeDiffgram, ServiceContext serviceContext)
 {
     this.dataTypeDiffgram = dataTypeDiffgram;
     this.serviceContext   = serviceContext;
 }