Skip to content

Instantly share code, notes, and snippets.

@suchithm
Last active October 16, 2020 04:54
Show Gist options
  • Save suchithm/93d8a0e92b15e087fb74ad991c50adda to your computer and use it in GitHub Desktop.
Save suchithm/93d8a0e92b15e087fb74ad991c50adda to your computer and use it in GitHub Desktop.
IEmployeeService
using System.Collections.Generic;
namespace ServiceManager
{
public interface IEmployeeService
{
List<string> GetEmployeeNameList();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment