public ChamadoController(IChamadoBLL chamado, ISolicitacaoBLL solicitacao, IUsuarioBLL usuario, IClienteBLL cliente, IGrupoBLL grupo)
 {
     _chamado     = chamado;
     _solicitacao = solicitacao;
     _usuario     = usuario;
     _cliente     = cliente;
     _grupo       = grupo;
 }
Exemple #2
0
 public VentaUI(ITraductor traductor, IVentaBLL ventaBLL, IClienteBLL clienteBLL, IUsuarioBLL usuarioBLL, IDetalleRefForm detalleRefForm)
 {
     this.traductor      = traductor;
     this.ventaBLL       = ventaBLL;
     this.clienteBLL     = clienteBLL;
     this.usuarioBLL     = usuarioBLL;
     this.detalleRefForm = detalleRefForm;
     InitializeComponent();
     dgVenta.AutoGenerateColumns = false;
 }
Exemple #3
0
 public DetalleVentaUI(
     IVentaBLL ventaBLL,
     IDetalleVentaBLL detalleVentaBLL,
     IProductoBLL productoBLL,
     IProductos productos,
     IClienteBLL clienteBLL,
     IClientes cliente,
     IFormControl formControl,
     ITraductor traductor)
 {
     this.ventaBLL        = ventaBLL;
     this.detalleVentaBLL = detalleVentaBLL;
     this.productoBLL     = productoBLL;
     this.productos       = productos;
     this.cliente         = cliente;
     this.clienteBLL      = clienteBLL;
     this.formControl     = formControl;
     this.traductor       = traductor;
     InitializeComponent();
     dgDetalleVta.AutoGenerateColumns = false;
 }
 public ClienteController(IClienteBLL cliente)
 {
     _cliente = cliente;
 }
Exemple #5
0
 public Clientes(IClienteBLL clienteBLL)
 {
     this.clienteBLL = clienteBLL;
     InitializeComponent();
 }
Exemple #6
0
 public UsuarioController(IUsuarioBLL usuario, IClienteBLL cliente, IGrupoBLL grupo)
 {
     _usuario = usuario;
     _cliente = cliente;
     _grupo   = grupo;
 }