Skip to content

Instantly share code, notes, and snippets.

@suchithm
Last active October 15, 2020 13:35
Show Gist options
  • Save suchithm/a7f06831d6461b98c6131e19f34b5023 to your computer and use it in GitHub Desktop.
Save suchithm/a7f06831d6461b98c6131e19f34b5023 to your computer and use it in GitHub Desktop.
EmployeeService class
using System;
using System.Collections.Generic;
namespace ServiceManager
{
public class EmployeeService : IEmployeeService
{
public EmployeeService()
{
}
/// <summary>
/// get employee name mock data
/// </summary>
/// <returns></returns>
public List<string> GetEmployeeNameList()
{
var list = new List<string>
{
"Shravan Madavu",
"Joshi naveen",
"Kotte Jayan",
"Ravi naganna",
"Kiran kumar",
"Elicia Esposito",
"Vivien Perras"
};
return list;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment