Exemplo n.º 1
0
 public CreateEntityHandler(
     IMongoDbCollection <T> userProfiles,
     IKeyGenerator <T> keyGenerator) :
     base(userProfiles)
 {
     _keyGenerator = keyGenerator;
 }
Exemplo n.º 2
0
 public UpdateEntityHandler(IMongoDbCollection <T> userProfiles) :
     base(userProfiles)
 {
 }
Exemplo n.º 3
0
 public EntityExists(IMongoDbCollection <T> userProfiles) :
     base(userProfiles)
 {
 }
Exemplo n.º 4
0
 protected KeyGenerator(IMongoDbCollection <T> collection)
 {
     _collection = collection;
 }
Exemplo n.º 5
0
 public DeleteEntityHandler(IMongoDbCollection <T> collection) :
     base(collection)
 {
 }
Exemplo n.º 6
0
 public GetListHandler(IMongoDbCollection <T> userProfiles) :
     base(userProfiles)
 {
 }
Exemplo n.º 7
0
 public MongoDbRepo(IMongoDbCollection <T> collection)
 {
     this.collection = collection;
 }
Exemplo n.º 8
0
 public StudentKeyGenerator(IMongoDbCollection <RKICStudent> collection)
     : base(collection)
 {
 }
Exemplo n.º 9
0
 public CustomFieldsKeyGenerator(IMongoDbCollection <RKICUser> collection)
     : base(collection)
 {
 }
Exemplo n.º 10
0
 protected HandlerBase(IMongoDbCollection <T> collection)
 {
     _collection = collection;
 }