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