using System; using System.Collections.Generic; using System.Text; namespace EmployeesAssembly { class Employees { public List GetEmployees() { // Code to get employees from a data store return new List(); } public void UpdateEmployees(List employees) { // Code to update employees changes in the data store } } }