public DefaultSchemaStore(List <Core.EF.Models.Schema> schemas)
 {
     _schemas = schemas == null ? new List <Models.Schema>
     {
         DefaultSchemas.GroupSchema,
         DefaultSchemas.UserSchema
     } : schemas;
     _transformers = new Transformers();
 }
 public RepresentationStore(ScimDbContext context, ITransformers transformers)
 {
     _context      = context;
     _transformers = transformers;
 }
 public DefaultRepresentationStore(List <Model.Representation> representations, ISchemaStore schemaStore)
 {
     _representations = representations == null ? new List <Model.Representation>() : representations;
     _transformers    = new Transformers();
     _schemaStore     = schemaStore;
 }
 public SchemaStore(ScimDbContext context, ITransformers transformers)
 {
     _context      = context;
     _transformers = transformers;
 }