public int Editar(clsDetalleDevolucionServicio obj, SentenciaSQL sql)
 {
     int resultado = 0;
     EjecutorBaseDatos.limpiarParametros();
     string sentenciaSQL = construirUpdate(obj) + CondicionSQL(sql);
     resultado = EjecutorBaseDatos.ejecutarSentencia(sentenciaSQL);
     return resultado;
 }
        public clsDetalleDevolucionServicio CrearObjeto(System.Data.DataTable tabla)
        {
            if (tabla.Rows.Count == 0) return null;
            clsDetalleDevolucionServicio obj = new clsDetalleDevolucionServicio();
            System.Data.DataRow fila =  tabla.Rows[0];
            {
                obj.Id = Convert.ToInt32(fila["Id"]);
            obj.idDevolucionServicio = Convert.ToInt32(fila["idDevolucionServicio"]);
            obj.idElemento = Convert.ToInt16(fila["idElemento"]);
            obj.Cantidad = Convert.ToInt32(fila["Cantidad"]);

            }
            return obj;
        }
        public List<clsDetalleDevolucionServicio> CrearObjetos(System.Data.DataTable tabla)
        {
            if (tabla.Rows.Count == 0) return null;
            var lista = new List<clsDetalleDevolucionServicio>();
            foreach (System.Data.DataRow fila in tabla.Rows)
            {
                var obj = new clsDetalleDevolucionServicio();
                obj.Id = Convert.ToInt32(fila["Id"]);
            obj.idDevolucionServicio = Convert.ToInt32(fila["idDevolucionServicio"]);
            obj.idElemento = Convert.ToInt16(fila["idElemento"]);
            obj.Cantidad = Convert.ToInt32(fila["Cantidad"]);

                lista.Add(obj);
            }
            return lista;
        }
 public int insertarDetalleDevolucionServicio(clsDetalleDevolucionServicio obj)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.Insertar(obj);
 }
 public int eliminarDetalleDevolucionServicio(clsDetalleDevolucionServicio obj, SentenciaSQL sql)
 {
     m_clsDetalleDevolucionServicioDALC = new clsDetalleDevolucionServicioDALC(m_EjecutorBaseDatos);
     return m_clsDetalleDevolucionServicioDALC.Eliminar(obj, sql);
 }
 public int Insertar(clsDetalleDevolucionServicio obj)
 {
     int resultado = 0;
     EjecutorBaseDatos.limpiarParametros();
     string sentenciaSQL = construirInsert(obj);
     resultado = EjecutorBaseDatos.ejecutarSentenciaInsert(sentenciaSQL);
     return resultado;
 }