コード例 #1
0
 public ClientRecord(Row row,
                     Exception validationError,
                     string recID   = null,
                     string target  = null,
                     string isoLang = null,
                     Client.ModelFieldValueListLookupFunc valueListLookupFunc = null)
 {
     RecID               = recID;
     Row                 = row;
     ValidationError     = validationError;
     Target              = target;
     IsoLang             = isoLang;
     ValueListLookupFunc = valueListLookupFunc;
 }
コード例 #2
0
ファイル: ActionResult.cs プロジェクト: yhhno/nfx
 public ClientRecord(Row row,
     Exception validationError,
     string recID = null,
     string target = null,
     string isoLang = null,
     Client.ModelFieldValueListLookupFunc valueListLookupFunc = null)
 {
     RecID = recID;
       Row = row;
       ValidationError = validationError;
       Target = target;
       IsoLang = isoLang;
       ValueListLookupFunc = valueListLookupFunc;
 }
コード例 #3
0
ファイル: ClientRecord.cs プロジェクト: wangchengqun/azos
 public ClientRecord(Doc doc,
                     Exception validationError,
                     Atom isoLang,
                     string recID  = null,
                     string target = null,
                     Client.ModelFieldValueListLookupFunc valueListLookupFunc = null)
 {
     RecID               = recID;
     Doc                 = doc;
     ValidationError     = validationError;
     Target              = target;
     IsoLang             = isoLang;
     ValueListLookupFunc = valueListLookupFunc;
 }
コード例 #4
0
ファイル: ActionResult.cs プロジェクト: yhhno/nfx
 public ClientRecord(Row row,
     Exception validationError,
     Func<Schema.FieldDef, JSONDataMap> simpleValueListLookupFunc,
     string recID = null,
     string target = null,
     string isoLang = null)
 {
     RecID = recID;
       Row = row;
       ValidationError = validationError;
       Target = target;
       IsoLang = isoLang;
       if (simpleValueListLookupFunc!=null)
     ValueListLookupFunc = (_sender, _row, _def, _target, _iso) => simpleValueListLookupFunc(_def);
       else
     ValueListLookupFunc = null;
 }