protected void btnBuscar_Click(object sender, EventArgs e) { int idDepart = Int32.Parse(txtIdDepartamento.Text); int idEmpleado = Int32.Parse(txtIdEmpleado.Text); Service wcf = new Service(); string fechaInicio = wcf.GetFechaInicioEmpleado(idDepart, idEmpleado); if (fechaInicio.Equals("")) lblFechaInicio.Text = "No se encontro el empleado"; else lblFechaInicio.Text = fechaInicio; }
public CustomUserNamePasswordValidator(Service.Settings serviceSettings) { this.serviceSettings = serviceSettings; }