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