Example #1
0
 public bool ISCategoryExist(int id)
 {
     return(_categoryBaseServices.Query(null, null).Any(x => x.Id == id));
 }
Example #2
0
 public bool ISTagExist(int id)
 {
     return(_tagBaseServices.Query(null, null).Any(x => x.Id == id));
 }
Example #3
0
 public async Task <List <T> > Query()
 {
     return(await baseDal.Query());
 }