public OperacionController(
     IOperacionApplication operacionApplication,
     IOperacionService articuloService)
 {
     this.operacionApplication = operacionApplication;
     _articuloService          = articuloService;
 }
Exemple #2
0
 public OperacionApplication(
     IOperacionService operacionService,
     IOptions <BusConfigDTO> options)
 {
     this.operacionService = operacionService;
     this.options          = options;
 }
 public ConfPagoServicioEmpresaViewModel(IOperacionService operacionService, ICuentaService cuentaService, INavigationService navigationService, IEventAggregator eventAggregator, IUserDialogs userDialogs)
     : base(navigationService, userDialogs)
 {
     this.CuentaService    = cuentaService;
     this.OperacionService = operacionService;
     this.EventAggregator  = eventAggregator;
 }
Exemple #4
0
 public OperacionesController(IOperacionService operacionService, IControlService controlService,
                              ErrorResponseFactory errorResponseFactory)
 {
     this.operacionService     = operacionService;
     this.controlService       = controlService;
     this.errorResponseFactory = errorResponseFactory;
 }
 public ConfDatosPagoViewModel(IOperacionService operacionService, ICuentaService cuentaService, ICatalogoService catalogoService, INavigationService navigationService, IPageDialogService dialogService, IEventAggregator eventAggregator)
     : base(navigationService, dialogService)
 {
     this.CatalogoService  = catalogoService;
     this.CuentaService    = cuentaService;
     this.EventAggregator  = eventAggregator;
     this.OperacionService = operacionService;
 }
Exemple #6
0
 public ControlService(HigoContext higoContext, ControlMapper controlMapper, IOperacionService operacionService,
                       ControlResponseBuilder controlResponseBuilder, ControlUtils controlUtils)
 {
     this.higoContext            = higoContext;
     this.controlMapper          = controlMapper;
     this.operacionService       = operacionService;
     this.controlResponseBuilder = controlResponseBuilder;
     this.controlUtils           = controlUtils;
 }
Exemple #7
0
 public UsuariosController(HigoContext ctx, IUsuarioService usuarioService,
                           UsuarioRequestValidator parametrosValidator, IOperacionService operacionService,
                           OperacionesClasificadasDTOBuilder operacionesClasificadasDtoBuilder,
                           ErrorResponseFactory errorResponseFactory)
 {
     this.ctx                 = ctx;
     this.usuarioService      = usuarioService;
     this.parametrosValidator = parametrosValidator;
     this.operacionService    = operacionService;
     this.operacionesClasificadasDtoBuilder = operacionesClasificadasDtoBuilder;
     this.errorResponseFactory = errorResponseFactory;
 }
        public OperacionesViewModel(IOperacionService operacionService, ICatalogoService catalogoService, INavigationService navigationService, IEventAggregator eventAggregator)
            : base(navigationService)
        {
            CatalogoService  = catalogoService;
            OperacionService = operacionService;
            EventAggregator  = eventAggregator;

            ListaOperaciones   = OperacionService.ListarOperaciones();
            ListaOpeFrecuentes = operacionService.ListarOperacionesFrecuentes();

            //suscripcion
            EventAggregator.GetEvent <OpeFrecuenteAddedEvent>().Subscribe(ActualizarListaOpeFrecuentes);
        }
Exemple #9
0
 public CalculadoraComisionesController(IOperacionService operacionServicios)
 {
     this._operacionServicios = operacionServicios;
 }
Exemple #10
0
 public CalculadoraComisionesController()
 {
     this._operacionServicios = new OperacionServicios();
 }
Exemple #11
0
 public SubOperacionesViewModel(IOperacionService operacionService, INavigationService navigationService)
     : base(navigationService)
 {
     this.OperacionService = operacionService;
 }
 public ConsultasViewModel(INavigationService navigationService, IOperacionService operacionService)
     : base(navigationService)
 {
     OperacionService = operacionService;
 }