public IEnumerable <Catalogue> GetInsertedRow(int LastCatalogueBefore, int LastCatalogueAfter) { var list = _CatalogueRepository.GetMany(l => l.Id >= LastCatalogueBefore && l.Id <= LastCatalogueAfter); return(list); }