Exemplo n.º 1
0
        // COSTRUTTORE
        public ValuesController(ITransientSalutante transientsalutante, IScopedSalutante scopedsalutante, ISingletonSalutante singletonsalutante, IService service, IAntiforgery antiforgery)
        {
            _transientsalutante = transientsalutante;
            _scopedsalutante    = scopedsalutante;
            _singletonsalutante = singletonsalutante;
            _service            = service;

            _antiforgery = antiforgery;
        }
Exemplo n.º 2
0
 public Service(ITransientSalutante transientsalutante, IScopedSalutante scopedsalutante, ISingletonSalutante singletonsalutante)
 {
     _transientsalutante = transientsalutante;
     _scopedsalutante    = scopedsalutante;
     _singletonsalutante = singletonsalutante;
 }