public RegistroIngreso() { this.Id_Ingreso = 0; this.proveedor = null; this.almacen = null; this.Subtotal = 0; this.Igv = 0; this.Monto_igv = 0; this.Total = 0; this.detalles = new List <DetalleRegistroIngreso>(); }
public RegistroIngreso(long id_Ingreso, Proveedor proveedor, AlmacenPrincipal almacen, DateTime fecha, DateTime fecha_proceso, TTipoComprobante tipoComprobante, double subtotal, double igv, double monto_igv, double total, TEstado estado) { this.Id_Ingreso = id_Ingreso; this.Proveedor = proveedor; this.Almacen = almacen; this.Fecha = fecha; this.Fecha_proceso = fecha_proceso; this.TipoComprobante = tipoComprobante; this.Subtotal = subtotal; this.Igv = igv; this.Monto_igv = monto_igv; this.Total = total; this.Estado = estado; this.detalles = new List <DetalleRegistroIngreso>(); }
public JefeDeAlmacen(long id_usuario, string nombre, string apellidos, string correo, string codigo, string contraseña, string descripcion_permisos, AlmacenPrincipal almac) : base(id_usuario, nombre, apellidos, correo, codigo, contraseña, descripcion_permisos) { Almacen = almac; }