Skip to content

Instantly share code, notes, and snippets.

@executeautomation
Created August 25, 2021 20:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save executeautomation/88f0e55e5598bdfbe6b285a04a2afe36 to your computer and use it in GitHub Desktop.
Save executeautomation/88f0e55e5598bdfbe6b285a04a2afe36 to your computer and use it in GitHub Desktop.
using System.Collections.Generic;
namespace MiniDemo.Model
{
public interface IDataRepository
{
List<Employee> AddEmployee(Employee employee);
List<Employee> GetEmployees();
Employee PutEmployee(Employee employee);
Employee GetEmployeeById(string id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment