public StatementConstrainParserBase(IConstraintStatementBuilder builder, string tableName)
 {
     this._builder        = builder;
     this._modelType      = typeof(TModel);
     this._tableName      = tableName;
     this._mappingEntries = new Dictionary <string, MappingEntry>();
     this.OnSetupMapping();
 }
 public ShortSensorConstraintParser(IConstraintStatementBuilder builder)
     : base(builder, "SENSORS_TABLE_NAME")
 {
 }