Пример #1
0
 public void AddToMappedEntityType(MappedEntityType mappedEntityType)
 {
     base.AddObject("MappedEntityType", mappedEntityType);
 }
Пример #2
0
 public static MappedEntityType CreateMappedEntityType(int ID, int length)
 {
     MappedEntityType mappedEntityType = new MappedEntityType();
     mappedEntityType.Id = ID;
     mappedEntityType.Length = length;
     return mappedEntityType;
 }