コード例 #1
0
        /*
         * funcion que guarda la fecha de lo estados del pegue
         */
        private void guardarFechaEstadoPegue(
            int estadoPegueId,
            int mesId,
            string codigoPegue,
            string year
            )
        {
            FechaEstadoPegue fechaEstadoPegue = new FechaEstadoPegue
            {
                IdEstadoPegue = estadoPegueId,
                IdMes         = mesId,
                CodPegue      = codigoPegue,
                Año           = year
            };

            DataAbonadoAccess.insertarFechaEstadoPegue(fechaEstadoPegue);
        }