Ejemplo n.º 1
0
 public EntryType(int EntryTypeID)
     : base()
 {
     _entryType = new Fpp.WebModules.Data.EntryType(_moduleSettings);
     DataSet ds = _entryType.getEntryType(EntryTypeID);
     if (ds.Tables[0].Rows.Count > 0)
     {
         LoadFromRow(ds.Tables[0].Rows[0]);
     }
 }
Ejemplo n.º 2
0
 public EntryType(DataRow row)
     : base()
 {
     _entryType = new Fpp.WebModules.Data.EntryType(_moduleSettings);
     LoadFromRow(row);
 }
Ejemplo n.º 3
0
 public EntryType()
     : base()
 {
     _entryType = new Fpp.WebModules.Data.EntryType(_moduleSettings);
 }