Example #1
0
        private void init(int id
                          , SMPGenNHibernate.EN.SMP.CarritoEN carrito, int cantidad, SMPGenNHibernate.EN.SMP.EventoEN evento, SMPGenNHibernate.EN.SMP.ProductoEN producto)
        {
            this.Id = id;


            this.Carrito = carrito;

            this.Cantidad = cantidad;

            this.Evento = evento;

            this.Producto = producto;
        }
Example #2
0
        private void init(string email
                          , SMPGenNHibernate.EN.SMP.CarritoEN carrito, string nombre, string apellidos, String contrasenya, string direccion, string tarjeta, System.Collections.Generic.IList <SMPGenNHibernate.EN.SMP.ListaEN> lista, string imagen)
        {
            this.Email = email;


            this.Carrito = carrito;

            this.Nombre = nombre;

            this.Apellidos = apellidos;

            this.Contrasenya = contrasenya;

            this.Direccion = direccion;

            this.Tarjeta = tarjeta;

            this.Lista = lista;

            this.Imagen = imagen;
        }
Example #3
0
 public Lineas_pedidoEN(int id, SMPGenNHibernate.EN.SMP.CarritoEN carrito, int cantidad, SMPGenNHibernate.EN.SMP.EventoEN evento, SMPGenNHibernate.EN.SMP.ProductoEN producto
                        )
 {
     this.init(Id, carrito, cantidad, evento, producto);
 }
Example #4
0
 public AdminEN(string email,
                SMPGenNHibernate.EN.SMP.CarritoEN carrito, string nombre, string apellidos, String contrasenya, string direccion, string tarjeta, System.Collections.Generic.IList <SMPGenNHibernate.EN.SMP.ListaEN> lista, string imagen
                )
 {
     this.init(Email, carrito, nombre, apellidos, contrasenya, direccion, tarjeta, lista, imagen);
 }