/// <summary>
 /// Initializes a new instance of the <see cref="ModelSetAdapter{TEntity, TModel,TMeta}"/> class.
 /// </summary>
 /// <param name="dataMapper">automapper profile</param>
 /// <param name="configuration">model set configuration</param>
 public ModelSetAdapter(IMapper dataMapper, IModelSetConfiguration <TEntity, TParameter> configuration)
 {
     this.dataMapper    = dataMapper;
     this.configuration = configuration;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ModelSetAdapter{TModel, TEntity}"/> class.
 /// </summary>
 /// <param name="dataMapper">automapper profile</param>
 /// <param name="configuration">config options</param>
 /// <param name="logger">injected logger</param>
 public ModelSetAdapter(IMapper dataMapper, IModelSetConfiguration <TEntity> configuration, ILogger logger)
     : base(dataMapper, configuration, logger)
 {
 }