Skip to content

Instantly share code, notes, and snippets.

@JIOO-phoeNIX
Created November 18, 2020 21:01
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 JIOO-phoeNIX/bae7317e32afaed43e4a8a7c92e0555b to your computer and use it in GitHub Desktop.
Save JIOO-phoeNIX/bae7317e32afaed43e4a8a7c92e0555b to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace Employee.DataAccess.Repository
{
public interface IEmployeeDAO
{
List<Model.Employee> GetAll();
Task<Model.Employee> CreateEmployee(Model.Employee employee);
Task<Model.Employee> GetEmployeeById(Guid? id);
Task<Model.Employee> UpdateEmployee(Model.Employee employee);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment