예제 #1
0
 public TopicRepository(ICandyContext context)
 {
     this._context = context as CandyContext;
 }
예제 #2
0
 public CategoryRepository(ICandyContext context)
 {
     this._context = context as CandyContext;
 }
예제 #3
0
 public PostRepository(ICandyContext context)
 {
     this._context = context as CandyContext;
 }
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="context"></param>
 public CategoryPermissionForRoleRepository(ICandyContext context)
 {
     this._context = context as CandyContext;
 }
예제 #5
0
 public SettingsRepository(ICandyContext context)
 {
     this._context = context as CandyContext;
 }
예제 #6
0
 public UserMetaRepository(ICandyContext context)
 {
     _context = context as CandyContext;
 }
예제 #7
0
 public UnitOfWorkManager(ICandyContext context)
 {
     Database.SetInitializer<CandyContext>(null);
     this._context = context as CandyContext;
 }
예제 #8
0
 public PermissionRepository(ICandyContext context)
 {
     this._context = context as CandyContext;
 }