public List <Employee> GetAll()
        {
            // To the operations
            var employees = _empOps.SelectAll();


            // Business rules here
            employees.RemoveAll(r => r.Name == "Secret");

            // Return the result
            return(employees);
        }