public HistorialMonedaController(EmailSender email, IHistorialMonedaService pHistorialService, IHistorialMonedaMap pHistorialMap, IHistorialMonedaRepository pHistorialRepo)
 {
     this.HistorialService = pHistorialService;
     this.HistorialMap     = pHistorialMap;
     this.HistorialRepo    = pHistorialRepo;
     this.email            = email;
 }
Esempio n. 2
0
 public HistorialMonedaService(IHistorialMonedaRepository pIHistorialMonedaRespository)
 {
     this.historialMonedaRepository = pIHistorialMonedaRespository;
 }