Ejemplo n.º 1
0
 public LinkRecordController(LinkRecordContext context)
 {
     linkRecordRepository     = new LinkRecordRepository(context);
     tagsLinkRecordRepository = new TagsLinkRecordRepository(context);
     tagRepository            = new TagRepository(context);
     categoryRepository       = new CategoryRepository(context);
     originalUrlRepository    = new OriginalUrlRepository(context);
     languageRepository       = new LanguageRepository(context);
     typeRepository           = new TypeRepository(context);
 }
Ejemplo n.º 2
0
 public LinkRecordRepository(LinkRecordContext context)
 {
     this.context = context;
 }
Ejemplo n.º 3
0
 public CategoryRepository(LinkRecordContext context)
 {
     this.context = context;
 }
Ejemplo n.º 4
0
 public OriginalUrlRepository(LinkRecordContext context)
 {
     this.context = context;
 }