Exemple #1
0
 public CharacterService(IMapper mapper, DotNetRpgContext context, IHttpContextAccessor contextAccessor)
 {
     _mapper          = mapper;
     _context         = context;
     _contextAccessor = contextAccessor;
 }
 public CharacterSkillService(DotNetRpgContext context, IHttpContextAccessor accessor, IMapper mapper)
 {
     _context  = context;
     _accessor = accessor;
     _mapper   = mapper;
 }
 public AuthRepository(DotNetRpgContext context, IConfiguration configuration)
 {
     _context       = context;
     _configuration = configuration;
 }
 public FightService(DotNetRpgContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
Exemple #5
0
 public WeaponService(DotNetRpgContext context, IHttpContextAccessor accessor, IMapper mapper)
 {
     _context  = context;
     _accessor = accessor;
     _mapper   = mapper;
 }