using FarmatikoData.Models; using System; using System.Collections.Generic; using System.Text; namespace FarmatikoServices.FarmatikoServiceInterfaces { public interface IHealthcareWorkerService { IEnumerable GetAll(); void Add(HealthcareWorkers healthcareWorker); //Not needed /*void Remove(HealthcareWorkers healthcareWorker);*/ } }