public BugToBugReportMapper(ICurrentSqlServerDbContext dbContext)
 {
     this.DbContext = dbContext;
 }
 public StandartModelsToDeveloperBugsInfo(ICurrentSqlServerDbContext dbContext)
 {
     this.DbContext = dbContext;
 }
 public SqlServerRepository(ICurrentSqlServerDbContext context)
 {
     this.DbContext = context;
     this.Set       = context.Set <TEntity>();
 }
 public StarndartModelsToMongoModelMapper(ICurrentSqlServerDbContext dbContext)
 {
     this.DbContext = dbContext;
 }