// // EmployeeServiceable.swift // EmployeeDirectory // // Created by Matt Bruce on 1/20/25. // /// This will be the interface for the API for Employees public protocol EmployeeServiceProtocol { /// This will get a list of all employees /// - Returns: An Employees struct func getEmployees() async throws -> Employees func getEmployees(page: Int, perPage: Int, sortField: EmployeeSortField, sortOrder: EmployeeSortOrder) async throws -> Employees }