public virtual VCWUIContext GetContext()
 {
     // dependency
     var orderBl = new OrderBl(new DbContext());
     return orderBl.GetContext();
 }
 public static VCWUIContext StaticGetContext()
 {
     var orderBl = new OrderBl(new DbContext());
     return orderBl.GetContext();
 }