public AnunciosController(IAnunciosService anuncios, ICuentasService cuentas, IReloj reloj)
 {
     _anunciosService = anuncios;
     _cuentasService = cuentas;
     _reloj = reloj;
 }
Beispiel #2
0
 public ClientesController(IClientesService clientServ, ICuentasService accountServ)
 {
     clientesService = clientServ;
     cuentasService  = accountServ;
 }
 public AccountController(ICuentasService cuentas)
 {
     _cuentasService = cuentas;
 }