Created
September 10, 2021 09:54
-
-
Save percybolmer/ae287d20fb43b7d31189f4371fea203f to your computer and use it in GitHub Desktop.
graphql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Repository is used to specify whats needed to fulfill the job storage requirements | |
type Repository interface { | |
// GetJobs will search for all jobs related to and EmployeeID | |
GetJobs(employeeID, company string) ([]Job, error) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment