using EmployeeLibrary.Models; namespace EmployeeLibrary.Data { public interface IEmployeeData { Task> GetEmployees(); } }