Ejemplo n.º 1
0
 /// <summary>
 /// Initializes new instance of the ValidationContext class
 /// </summary>
 public UpidaValidationContext(IUpidaContext context)
 {
     this.math       = context.Math;
     this.pathHelper = context.PathHelper;
     this.checker    = context.Checker;
     this.path       = this.pathHelper.CreateNew();
     this.isValid    = true;
 }
Ejemplo n.º 2
0
 public ValidationContext(IUpidaContext upidaContext)
     : base(upidaContext)
 {
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Initializes new instance of the JsonParser class
 /// </summary>
 /// <param name="context"></param>
 public JsonParser(IUpidaContext context)
 {
     this.context = context;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes new instance of the Mapper class
 /// </summary>
 /// <param name="context"></param>
 public Mapper(IUpidaContext context)
 {
     this.context = context;
 }
Ejemplo n.º 5
0
 /// <summary>
 /// Initializes new instance of the PropertyMetaFactory class
 /// </summary>
 /// <param name="context"></param>
 public PropertyMetaFactory(IUpidaContext context)
 {
     this.context = context;
 }