Last active
October 15, 2020 13:35
-
-
Save suchithm/a7f06831d6461b98c6131e19f34b5023 to your computer and use it in GitHub Desktop.
EmployeeService class
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; | |
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