using System.Threading.Tasks; namespace Campaign_Tracker.Server.Seed; public interface ISeedService { Task SeedAsync(); Task IsSeededAsync(); }