using FarmatikoData.Models; using System.Linq; namespace FarmatikoData.FarmatikoRepoInterfaces { public interface IPandemicRepository { IQueryable GetAll(); void Add(Pandemic pandemic); void Remove(Pandemic pandemic); } }