public CharacterService(IMapper mapper, IRpgClassService rpgClassService, DataContext dataContext, IHostEnvironment environment)
 {
     _rpgclassService = rpgClassService;
     _mapper          = mapper;
     _dataContext     = dataContext;
     _environment     = environment;
 }
 public RpgClassController(IRpgClassService rpgClassService)
 {
     _rpgClassService = rpgClassService;
 }