public DataTable GetEmployeeById(int id) // Here Parameter name must be id
 {
     dt = objmodel.GetEmployeeById(id);
     return(dt);
 }