public async Task GetEmployees_Ok() { var employees = await _masService.GetEmployees(); Assert.IsTrue(employees.Count > 0); }
public Task <IList <Employee> > GetEmployees() { return(_masService.GetEmployees()); }