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