Example #1
0
 public MutatorRepository(SourceNetContext db)
 {
     _db = db;
 }
 public SqlServerTagRepository(SourceNetContext db) :
     base(db)
 {
 }
 public SqlServerCategoryRepository(SourceNetContext db) :
     base(db)
 {
 }
Example #4
0
 public SqlServerPostRepository(SourceNetContext db, UserPostCategoryRepository userPostCategories, UserPostTagRepository userPostTags) :
     base(db)
 {
     _userPostTags       = userPostTags;
     _userPostCategories = userPostCategories;
 }
Example #5
0
 public DashboardStatistics(PostMapper postMapper, RoleMapper roleMapper, SourceNetContext db)
 {
     _db             = db;
     this.roleMapper = roleMapper;
     this.postMapper = postMapper;
 }