public OrderITEntities(EntityConnection connection, IObjectPersistenceNotification notification)
     : base(connection, ContainerName, notification)
 {
     this.ContextOptions.LazyLoadingEnabled = true;
 }
 public ExtendedObjectContext(EntityConnection connection, string ContainerName, IObjectPersistenceNotification notification)
     : base(connection, ContainerName)
 {
     this.ContextOptions.LazyLoadingEnabled = true;
     PersistenceNotification = notification;
 }