public RepresentationInfoRepository(IDbGateway dbGateway, IDataTableToMetaDataMapper <RepresentationInfo> mapper, ITypeToRepresentationObjectTypeMapper representationObjectTypeMapper) :
     base(dbGateway, mapper, CoreConstants.ORM.ViewRepresentationInfos)
 {
     _representationObjectTypeMapper = representationObjectTypeMapper;
 }
 public RepresentationInfoRepository(IDbGateway dbGateway, IDataTableToMetaDataMapper <RepresentationInfo> mapper, ITypeToRepresentationObjectTypeMapper representationObjectTypeMapper) :
     base(dbGateway, mapper, CoreConstants.ORM.ViewRepresentationInfos)
 {
     _representationObjectTypeMapper = representationObjectTypeMapper;
     _representationInfosCache       = new Cache <string, RepresentationInfo>(getKey, x => null);
 }