11 lines
228 B
Swift
11 lines
228 B
Swift
//
|
|
// EmployeeServiceable.swift
|
|
// EmployeeDirectory
|
|
//
|
|
// Created by Matt Bruce on 1/20/25.
|
|
//
|
|
|
|
public protocol EmployeeServiceProtocol {
|
|
func getEmployees(_ serviceMode: EmployeeServiceMode) async throws -> Employees
|
|
}
|