public Apress.VisualCSharpRecipes.Chapter10.Services.Employee UpdateEmployee(Apress.VisualCSharpRecipes.Chapter10.Services.Employee updatedEmployee)
 {
     return(base.Channel.UpdateEmployee(updatedEmployee));
 }
 public Apress.VisualCSharpRecipes.Chapter10.Services.Employee CreateEmployee(Apress.VisualCSharpRecipes.Chapter10.Services.Employee newEmployee)
 {
     return(base.Channel.CreateEmployee(newEmployee));
 }