コード例 #1
0
        public Boolean AgregarEmpleado(string ced, string n1, string n2, string a1, string a2, string dir, string tel, string mail, int idDep, int idCargo)
        {
            try
            {
                objEmpleado = new CD_Empleado();
                objEmpleado.AgregarEmpleado(ced, n1, n2, a1, a2, dir, tel, mail, idDep, idCargo);
                return(true);
            }
            catch (Exception) { }

            return(false);
        }