public void DisposeEmployeeList()
 {
     using (var client = new CreateOrModifyEmployeeClient())
     {
         client.DisposeEmployeeList();
     }
 }
        public void TestGetIncorrectEmployeeDetailsByName()
        {
            using (var createClient = new CreateOrModifyEmployeeClient())
            {
                createClient.DisposeEmployeeList();
                createClient.CreateEmployee("baby", "baby doll me sone di ye duniya pittal di");

                using (var client = new RetrieveEmpDetailsClient())
                {
                    string name     = "maharaja";
                    var    employee = client.GetEmployeeDetailsByName(name);
                }
            }
        }