예제 #1
0
        public int EditarEmpleado(Int64 Id, string Apellidos, string Nombres, double Horas, double Sueldo)


        {
            try {
                return(DAle.EditarEmpleado(Id, Apellidos, Nombres, Horas, Sueldo));
            }
            catch (Exception)

            {
                throw;
            }
            finally
            {
                DAle = null;
            }
        }