コード例 #1
0
 public ExceptionLogRepository(IMongoContextGeneric <ExceptionLog> mongoContext) : base(mongoContext)
 {
 }
コード例 #2
0
 public EventRepository(IMongoContextGeneric <Models.Event.Event> mongoContext) : base(mongoContext)
 {
 }
コード例 #3
0
 internal Repository(IMongoContextGeneric <TEntity> mongoContext)
 {
     MongoContext = mongoContext;
 }
コード例 #4
0
 public Feedback(IMongoContextGeneric <Feedback> context)
 {
     _context = context;
 }
コード例 #5
0
 public FeedbackRepository(IMongoContextGeneric <Models.Feedback.Feedback> mongoContext) : base(mongoContext)
 {
 }
コード例 #6
0
 public GroupRepository(IMongoContextGeneric <Models.Group.Group> mongoContext)
     : base(mongoContext)
 {
 }
コード例 #7
0
 public Business(IMongoContextGeneric <Business> context)
 {
     _context = context;
 }
コード例 #8
0
 public SpotUser(IMongoContextGeneric <SpotUser> context)
 {
     _context = context;
 }
コード例 #9
0
 public SpotRepository(IMongoContextGeneric <Models.Spot.Spot> mongoContext) : base(mongoContext)
 {
 }
コード例 #10
0
 public Group(IMongoContextGeneric <Group> context)
 {
     _context = context;
 }
コード例 #11
0
 public Log(IMongoContextGeneric <Log> context)
 {
     _context = context;
 }
コード例 #12
0
        public Location(IMongoContextGeneric <Location> context)
        {
            _context = context;

            Spots = new List <ObjectId>();
        }
コード例 #13
0
 public Event(IMongoContextGeneric <Event> context)
 {
     _context = context;
 }
コード例 #14
0
 public LocationRepository(IMongoContextGeneric <Models.Location.Location> mongoContext) : base(mongoContext)
 {
 }
コード例 #15
0
 public BusinessRepository(IMongoContextGeneric <Models.Business.Business> mongoContext)
     : base(mongoContext)
 {
 }
コード例 #16
0
 public SpotUserRepository(IMongoContextGeneric <Models.User.SpotUser> mongoContext)
     : base(mongoContext)
 {
 }
コード例 #17
0
 public LogRepository(IMongoContextGeneric <Models.Log.Log> mongoContext) : base(mongoContext)
 {
 }
コード例 #18
0
 public ExceptionLog(IMongoContextGeneric <ExceptionLog> context)
 {
     _context = context;
 }
コード例 #19
0
 public Spot(IMongoContextGeneric <Spot> context)
 {
     _context = context;
 }