public SqLiteSecretSantasRepository(
     IMapper mapper,
     IAppConfiguration appConfig,
     ChristmasDbContextFactory contextFactory
     )
 {
     _mapper          = mapper;
     _appConfig       = appConfig;
     dbContextFactory = contextFactory;
 }
 public SqlLiteCommentsRepository(
     IMapper mapper,
     IAppConfiguration appConfig,
     ChristmasDbContextFactory contextFactory
     )
 {
     _mapper          = mapper;
     _appConfig       = appConfig;
     dbContextFactory = contextFactory;
 }