public GenericRepository(EasyJamCoreDbContext dbContext, IMapper mapper)
 {
     this.dbContext = dbContext;
     this.mapper    = mapper;
 }
 public DancerRepository(EasyJamCoreDbContext dbContext, IMapper mapper)
     : base(dbContext, mapper)
 {
 }