Example #1
0
 public static IsDataSet Find(this IsRepository repository, Type type, object id)
 {
     return(repository.InvokeGenericMethod("Find", type, id) as IsDataSet);
 }
Example #2
0
 public static IsDataSet Get(this IsRepository repository, Type type)
 {
     return(repository.InvokeGenericMethod("Get", type) as IsDataSet);
 }