コード例 #1
0
        public UsuarioController(IUsuarioRepo context, IClaimService claim)
        {
            this.context = context;

            this.claim = claim;
            claim.SetHttpContext(HttpContext);
        }
コード例 #2
0
 public UsuarioService(IUsuarioRepo usuarioRepo)
 {
     _usuarioRepo = usuarioRepo;
 }
コード例 #3
0
 public UsuariosController(IUsuarioRepo userRepo, IMapper mapper, IConfiguration config)
 {
     _userRepo = userRepo;
     _mapper   = mapper;
     _config   = config;
 }
コード例 #4
0
 public UsuariosController(IUsuarioRepo userRepo, IMapper mapper)
 {
     _userRepo = userRepo;
     _mapper   = mapper;
 }