public IQueryable <SitemapRow> GetSitemap(string historyRowId)
 {
     return(_smRepo.GetAll().Where(i => i.HistoryRowId == historyRowId));
 }
 public IQueryable <HistoryRow> GetHistory()
 {
     return(_historyRepo.GetAll());
 }