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