Exemple #1
0
 public static DbTable<QFComponentsPhoto> LoadByPDMStatusPhotoID(DbNullable<int> pDMStatusPhotoID)
 {
     DbTable<QFComponentsPhoto> table = new DbTable<QFComponentsPhoto>();
     QFComponentsPhoto prototype = new QFComponentsPhoto();
     prototype.LoadTable(table, "[PDMStatusPhotoID]={0}", DbConverter.FromIntNull(pDMStatusPhotoID));
     return table;
 }
Exemple #2
0
 public static DbTable<QFComponentsPhoto> LoadByKategorieKomponentu(DbNullable<string> kategorieKomponentu)
 {
     DbTable<QFComponentsPhoto> table = new DbTable<QFComponentsPhoto>();
     QFComponentsPhoto prototype = new QFComponentsPhoto();
     prototype.LoadTable(table, "[KategorieKomponentu]={0}", DbConverter.FromStringNull(kategorieKomponentu));
     return table;
 }
Exemple #3
0
 public static DbTable<QFComponentsPhoto> LoadByKomponentKategorieID(DbNullable<int> komponentKategorieID)
 {
     DbTable<QFComponentsPhoto> table = new DbTable<QFComponentsPhoto>();
     QFComponentsPhoto prototype = new QFComponentsPhoto();
     prototype.LoadTable(table, "[KomponentKategorieID]={0}", DbConverter.FromIntNull(komponentKategorieID));
     return table;
 }
Exemple #4
0
 public static DbTable<QFComponentsPhoto> LoadByDostupnostID(DbNullable<int> dostupnostID)
 {
     DbTable<QFComponentsPhoto> table = new DbTable<QFComponentsPhoto>();
     QFComponentsPhoto prototype = new QFComponentsPhoto();
     prototype.LoadTable(table, "[DostupnostID]={0}", DbConverter.FromIntNull(dostupnostID));
     return table;
 }
Exemple #5
0
 public static DbTable<QFComponentsPhoto> LoadBy(string whereCondition, params object[] parameterValues)
 {
     DbTable<QFComponentsPhoto> table = new DbTable<QFComponentsPhoto>();
     QFComponentsPhoto prototype = new QFComponentsPhoto();
     prototype.LoadTable(table, whereCondition, parameterValues);
     return table;
 }
Exemple #6
0
 public static DbTable<QFComponentsPhoto> LoadAll()
 {
     DbTable<QFComponentsPhoto> table = new DbTable<QFComponentsPhoto>();
     QFComponentsPhoto prototype = new QFComponentsPhoto();
     prototype.LoadTable(table);
     return table;
 }
Exemple #7
0
 public static QFComponentsPhoto Load(int componentID)
 {
     QFComponentsPhoto result = new QFComponentsPhoto();
     result.LoadRecord(componentID);
     return result;
 }
Exemple #8
0
 public static QFComponentsPhoto Create()
 {
     QFComponentsPhoto result = new QFComponentsPhoto();
     result.LoadDefaultValues();
     return result;
 }