Esempio n. 1
0
 public ProcesoLiquidacionSolicitudPago(IListaRepository listaRepository, IPlanPagoRepository planPagoRepository,
                                        ITerceroRepository terceroRepository, IGeneralInterface generalInterface)
 {
     this._repoLista          = listaRepository;
     this._planPagoRepository = planPagoRepository;
     this._terceroRepository  = terceroRepository;
     this._generalInterface   = generalInterface;
 }
Esempio n. 2
0
 public DetalleLiquidacionRepository(DataContext context, IMapper mapper,
                                     IGeneralInterface generalInterface, IListaRepository listaRepository)
 {
     _mapper  = mapper;
     _context = context;
     this._generalInterface = generalInterface;
     this._listaRepository  = listaRepository;
 }
Esempio n. 3
0
        public SettingViewModel(IGeneralInterface generalInterface, IPageService pageService)
        {
            _generalInterface = generalInterface;
            _pageInterface    = pageService;

            LoadUserSettingsCommand = new Command(async() => await LoadSettings());
            SaveSettingsCommand     = new Command(async() => await SaveSetting());
            ResetTransactionCommand = new Command(async() => await Reset());
        }
Esempio n. 4
0
        public DataListViewModel(IGeneralInterface generalInterface, IPageService pageService)
        {
            _generalInterface = generalInterface;
            _pageService      = pageService;

            LoadDataCommand   = new Command(async() => await LoadData());
            SelectDataCommand = new Command <UserDataViewModel>(async c => await SelectData(c));
            DeleteDataCommand = new Command <UserDataViewModel>(async c => await DeleteData(c));
        }
Esempio n. 5
0
        public CargaObligacionController(DataContext dataContext, ICargaObligacionService cargaService,
                                         ICargaObligacionRepository repo, IMapper mapper, IGeneralInterface generalInterface)

        {
            _generalInterface = generalInterface;
            _repo             = repo;
            _cargaService     = cargaService;
            _dataContext      = dataContext;
            _mapper           = mapper;
        }
Esempio n. 6
0
        public DataInputViewModel(IGeneralInterface generalInterface, IPageService pageService)
        {
            _generalInterface = generalInterface;
            _pageService      = pageService;

            PickerPlaceholder = "CATEGORY";
            SelectedCategory  = null;

            SaveCommand = new Command(async() => await Save());
        }
Esempio n. 7
0
 public SolicitudCdpController(ISolicitudCdpRepository repo, IUsuarioRepository usuarioRepo, IMapper mapper,
                               DataContext dataContext, IGeneralInterface generalInterface, IPlanAdquisicionRepository planAdquisicionRepo)
 {
     _usuarioRepo         = usuarioRepo;
     _mapper              = mapper;
     _repo                = repo;
     _dataContext         = dataContext;
     _generalInterface    = generalInterface;
     _planAdquisicionRepo = planAdquisicionRepo;
 }
Esempio n. 8
0
 public ContratoController(IContratoRepository repo, IMapper mapper, ICDPRepository cdpRepo,
                           DataContext dataContext, IGeneralInterface generalInterface,
                           IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     _mapper           = mapper;
     _repo             = repo;
     _cdpRepo          = cdpRepo;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Esempio n. 9
0
 public CDPController(ICDPRepository repo, IUsuarioRepository usuarioRepo, IMapper mapper,
                      DataContext dataContext, IGeneralInterface generalInterface,
                      IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     _usuarioRepo      = usuarioRepo;
     _mapper           = mapper;
     _repo             = repo;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Esempio n. 10
0
 public ActividadGeneralController(IActividadGeneralRepository repo,
                                   IActividadGeneralService serviceActividad,
                                   DataContext dataContext,
                                   IGeneralInterface generalInterface,
                                   IMapper mapper)
 {
     _repo             = repo;
     _mapper           = mapper;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _serviceActividad = serviceActividad;
 }
Esempio n. 11
0
 public ActividadGeneralService(IPlanAdquisicionRepository repo,
                                IActividadGeneralRepository repoActividad,
                                DataContext dataContext,
                                IGeneralInterface generalInterface,
                                IMapper mapper)
 {
     _repo             = repo;
     _mapper           = mapper;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _repoActividad    = repoActividad;
 }
Esempio n. 12
0
        public DashboardViewModel(IGeneralInterface generalInterface, IPageService pageService)
        {
            _generalInterface = generalInterface;
            _pageService      = pageService;

            LoadDataCommand       = new Command(async() => await LoadData());
            LoadSettingCommand    = new Command(async() => await LoadSetting());
            RefreshCommand        = new Command(async() => await Refresh());
            ShowFilterCommand     = new Command(async() => await Show());
            LoadFilterDataCommand = new Command(async() => await LoadFilteredData());
            DataTappedCommand     = new Command(async() => await GoToData());
            TargetTappedCommand   = new Command(async() => await GoToSetting());
        }
Esempio n. 13
0
 public ClavePresupuestalContableController(IUnitOfWork unitOfWork, IClavePresupuestalContableRepository repo,
                                            IMapper mapper, DataContext dataContext, IListaRepository listaRepository,
                                            IGeneralInterface generalInterface,
                                            IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     this._mapper           = mapper;
     this._repo             = repo;
     this._unitOfWork       = unitOfWork;
     _dataContext           = dataContext;
     this._generalInterface = generalInterface;
     this._listaRepository  = listaRepository;
     this._procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Esempio n. 14
0
 public SolicitudPagoController(ISolicitudPagoRepository repo, IMapper mapper,
                                DataContext dataContext, IGeneralInterface generalInterface,
                                IPlanPagoRepository planPagoRepository, IListaRepository listaRepository,
                                IProcesoLiquidacionSolicitudPago procesoLiquidacion,
                                ITerceroRepository terceroRepository)
 {
     _mapper             = mapper;
     _repo               = repo;
     _dataContext        = dataContext;
     _generalInterface   = generalInterface;
     _listaRepository    = listaRepository;
     _planPagoRepository = planPagoRepository;
     _procesoLiquidacion = procesoLiquidacion;
     _terceroRepository  = terceroRepository;
 }
Esempio n. 15
0
 public PlanPagoController(IUnitOfWork unitOfWork, IPlanPagoRepository repo,
                           IMapper mapper, DataContext dataContext,
                           IMailService mailService,
                           IProcesoLiquidacionPlanPago procesoLiquidacion,
                           IGeneralInterface generalInterface,
                           IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     this._mapper                        = mapper;
     this._repo                          = repo;
     this._unitOfWork                    = unitOfWork;
     this.mailService                    = mailService;
     _dataContext                        = dataContext;
     this._procesoLiquidacion            = procesoLiquidacion;
     this._generalInterface              = generalInterface;
     this._procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Esempio n. 16
0
        public LoginViewModel(IGeneralInterface generalInterface, IPageService pageService)
        {
            _generalInterface = generalInterface;
            _pageService      = pageService;

            //Initialize pin and users
            Globals.currentUser = null;
            Globals.Users       = new ObservableCollection <UserViewModel>();
            Pin1 = null;
            Pin2 = null;
            Pin3 = null;
            Pin4 = null;

            LoadUserCommand = new Command(async() => await LoadUsers());
            LoginCommand    = new Command(async() => await Login());
            RefreshCommand  = new Command(async() => await Refresh());
        }
Esempio n. 17
0
 public PlanAdquisicionController(IPlanAdquisicionRepository repo,
                                  IActividadGeneralRepository repoActividad,
                                  IActividadGeneralService serviceActividad,
                                  IListaRepository repoLista,
                                  DataContext dataContext,
                                  IGeneralInterface generalInterface,
                                  IMapper mapper,
                                  IProcesoCreacionArchivoExcel procesoCreacionExcelInterface)
 {
     _repo             = repo;
     _mapper           = mapper;
     _dataContext      = dataContext;
     _generalInterface = generalInterface;
     _repoActividad    = repoActividad;
     _serviceActividad = serviceActividad;
     _repoLista        = repoLista;
     this._procesoCreacionExcelInterface = procesoCreacionExcelInterface;
 }
Esempio n. 18
0
 public AuthRepository(DataContext context, IUnitOfWork unitOfWork, IGeneralInterface generalInterface)
 {
     _unitOfWork       = unitOfWork;
     _context          = context;
     _generalInterface = generalInterface;
 }
Esempio n. 19
0
 public UnitOfWork(DataContext context, IMapper mapper, IGeneralInterface generalInterface)
 {
     _context = context;
     _mapper  = mapper;
     this._generalInterface = generalInterface;
 }
Esempio n. 20
0
 public LogUserActivity(IGeneralInterface generalInterface)
 {
     this._generalInterface = generalInterface;
 }
Esempio n. 21
0
 public PlanPagoRepository(DataContext context, IMapper mapper, IGeneralInterface generalInterface)
 {
     _mapper  = mapper;
     _context = context;
     this._generalInterface = generalInterface;
 }
Esempio n. 22
0
 public LogActividadUsuario(IGeneralInterface generalInterface)
 {
     this._generalInterface = generalInterface;
 }
Esempio n. 23
0
 public CDPRepository(DataContext context, IGeneralInterface generalInterface)
 {
     _context          = context;
     _generalInterface = generalInterface;
 }