/*private readonly LarpBuilderContext _dbContext;
         * private readonly IMapper _mapper;*/

        public CharacterRepository(
            [Service] LarpBuilderContext dbContext,
            [Service] IMapper mapper,
            [Service] IDapperDataSession dapperDataSession) : base(dbContext, mapper)
        {
            _dapperDataSession = dapperDataSession;
        }
 public SkillRepository(
     [Service] LarpBuilderContext dbContextEF,
     [Service] IMapper mapper,
     [Service] IDapperDataSession dapperDataSessionLarpBuilderContext
     ) : base(dbContextEF, mapper)
 {
     _dbContextEf = dbContextEF;
     _mapper      = mapper;
     _dapperDataSessionLarpBuilderContext = dapperDataSessionLarpBuilderContext;
 }