示例#1
0
 public frm_main_service()
 {
     InitializeComponent();
     uService  = new UnidadService();
     cService  = new ClienteService();
     pvService = new PostVentaService();
     support   = Support.Support.GetSupport();
 }
示例#2
0
 public frm_detalle_pv(int seleccionada, int unidadSeleccionada)
 {
     InitializeComponent();
     uService            = new UnidadService();
     pvService           = new PostVentaService();
     this.pvSeleccionado = pvService.getPostVentaMasDetalle(seleccionada, unidadSeleccionada);
     this.uSeleccionada  = uService.getUnidadPorId(unidadSeleccionada);
 }
示例#3
0
 public frm_new_service(int unidad, int opcion)
 {
     uService           = new UnidadService();
     pvService          = new PostVentaService();
     newPostventa       = new PostVenta();
     job                = new Trabajo();
     unidadSeleccionada = uService.getUnidadParaService(unidad);
     this.opcion        = opcion;
     InitializeComponent();
 }