Esempio n. 1
0
 public JwtSessionAuthService(IConfiguration config, IShopMateRepository repository)
 {
     this.config     = config;
     this.repository = repository;
 }
Esempio n. 2
0
 public UserController(IShopMateRepository repository, IMapper mapper, IShopMateAuthService auth)
 {
     this.repository = repository;
     this.mapper     = mapper;
     this.auth       = auth;
 }
Esempio n. 3
0
 public CouponsController(IShopMateRepository repository, IMapper mapper)
 {
     this.repository = repository;
     this.mapper     = mapper;
 }