コード例 #1
0
ファイル: DeleteBC.cs プロジェクト: joelbugarini/nomina
        public string DeleteCapacitacionEmpleado(int id)
        {

            DeleteDAC objDAC = new DeleteDAC();
            if (objDAC.deleteCapacitacionEmpleado(id) == true)
                return "Registro eliminado con éxito.";
            else
                return "No se pudo eliminar el regitro.";
        }
コード例 #2
0
ファイル: DeleteBC.cs プロジェクト: joelbugarini/nomina
        public string DeleteIncidente(int id)
        {

            DeleteDAC objDAC = new DeleteDAC();
            if (objDAC.deleteIncidente(id) == true)
                return "Registro eliminado con éxito.";
            else
                return "No se pudo eliminar el regitro.";
        }