Exemple #1
0
        private Func <EtapasCandidatoViewModel> ObtenerEtapasCandidatoViewModelFactory()
        {
            var service = new EtapasCandidatoService(db);

            EtapasCandidatoViewModel windowFactory() =>
            new EtapasCandidatoViewModel(
                service
                );

            return(windowFactory);
        }
 public EtapasCandidatoViewModel(
     EtapasCandidatoService etapasCandidatoService
     )
 {
     this.etapasCandidatoService = etapasCandidatoService;
 }