Example #1
0
        public static void InsertInto(string UidUserLogin, ClassEquipoherramienta VALUE, out string resultado)
        {
            resultado = "";
            string trx = "01661";

            CRUD(trx, UidUserLogin, VALUE, out resultado);
        }
Example #2
0
        private static DataTable CRUD(string trx, string UidUserLogin, ClassEquipoherramienta VALUE, out string resultado, string EstadoExistencia = "A")
        {
            resultado = "";
            #region Parametros Entrada y Salida
            var ParamOut = new List <ParametersProcedure>();
            var ParamIn  = new List <ParametersProcedure>();


            ParamIn.Add(new ParametersProcedure(nameof(VALUE.uidequipoherramienta), VALUE.uidequipoherramienta, "".GetType().ToString(), OrentationType.In));
            ParamIn.Add(new ParametersProcedure(nameof(VALUE.uidequipo), VALUE.uidequipo, "".GetType().ToString(), OrentationType.In));
            ParamIn.Add(new ParametersProcedure(nameof(VALUE.uidproducto), VALUE.uidproducto, "".GetType().ToString(), OrentationType.In));

            ParamIn.Add(new ParametersProcedure(nameof(trx), trx, trx.GetType().ToString(), OrentationType.In));
            ParamIn.Add(new ParametersProcedure(nameof(UidUserLogin), UidUserLogin, UidUserLogin.GetType().ToString(), OrentationType.In));
            ParamIn.Add(new ParametersProcedure(nameof(EstadoExistencia), EstadoExistencia, EstadoExistencia.GetType().ToString(), OrentationType.In));
            ParamIn.Add(new ParametersProcedure(nameof(resultado), resultado, resultado.GetType().ToString(), OrentationType.Out));
            #endregion
            var table           = SqlProcedureExec.ExecProcedure("[dbo].[sp_equipoherramienta]", ParamIn, out ParamOut);
            var param_resultado = ParamOut.Where(x => x.Parameter == "resultado").FirstOrDefault();
            if (param_resultado != null)
            {
                if (param_resultado.TypeDate.Equals("".GetType().ToString()))
                {
                    resultado = Convert.ToString(param_resultado.Value);
                }
            }
            else
            {
                resultado = "";
            }
            return(table);
        }
Example #3
0
        public static List <ClassEquipoherramienta> Select(string UidUserLogin, ClassEquipoherramienta VALUE, out string resultado, string EstadoExistencia)
        {
            resultado = "";
            string trx   = "01660";
            var    table = CRUD(trx, UidUserLogin, VALUE, out resultado);
            List <ClassEquipoherramienta> retorno = new List <ClassEquipoherramienta>();
            var retornoAux = (from x in table.AsEnumerable()
                              select new
            {
                uidequipoherramienta = x.Field <string>("uidequipoherramienta"),
                uidequipo = x.Field <string>("uidequipo"),
                uidproducto = x.Field <string>("uidproducto"),
                aux1 = x.Field <string>("aux1"),
                aux2 = x.Field <string>("aux2"),
                aux3 = x.Field <string>("aux3"),
                aux4 = x.Field <string>("aux4"),
                aux5 = x.Field <string>("aux5"),
                aux6 = x.Field <string>("aux6"),
                aux7 = x.Field <string>("aux7"),
                aux8 = x.Field <string>("aux8"),
                aux9 = x.Field <string>("aux9"),
                aux10 = x.Field <string>("aux10"),
            }).ToList();

            ClassEquipoherramienta cl;

            foreach (var x in retornoAux)
            {
                cl = new ClassEquipoherramienta();


                cl.uidequipoherramienta = x.uidequipoherramienta;
                cl.uidequipo            = x.uidequipo;
                cl.uidproducto          = x.uidproducto;
                cl.aux1  = x.aux1;
                cl.aux2  = x.aux2;
                cl.aux3  = x.aux3;
                cl.aux4  = x.aux4;
                cl.aux5  = x.aux5;
                cl.aux6  = x.aux6;
                cl.aux7  = x.aux7;
                cl.aux8  = x.aux8;
                cl.aux9  = x.aux9;
                cl.aux10 = x.aux10;
                retorno.Add(cl);
            }

            return(retorno);
        }