Created
August 25, 2021 20:56
-
-
Save executeautomation/88f0e55e5598bdfbe6b285a04a2afe36 to your computer and use it in GitHub Desktop.
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
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