using FarmatikoData.Models; using System; using System.Collections.Generic; using System.Text; namespace FarmatikoData.FarmatikoRepoInterfaces { public interface IPandemicRepository { IEnumerable GetAll(); void Add(Pandemic pandemic); void Remove(Pandemic pandemic); } }