Exemple #1
0
 public ApiErrorCollection FetchAll()
 {
     ApiErrorCollection coll = new ApiErrorCollection();
     Query qry = new Query(ApiError.Schema);
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemple #2
0
 public ApiErrorCollection FetchByQuery(Query qry)
 {
     ApiErrorCollection coll = new ApiErrorCollection();
     coll.LoadAndCloseReader(qry.ExecuteReader());
     return coll;
 }
Exemple #3
0
 public ApiErrorCollection FetchByID(object ApiErrorsKey)
 {
     ApiErrorCollection coll = new ApiErrorCollection().Where("API_Errors_Key", ApiErrorsKey).Load();
     return coll;
 }