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