public TagRepository(PortfolioContext context)
     : base(context)
 {
     //Add(new Tag { Name = "C#", TagTypeID = 4 });
     //Add(new Tag { Name = "C++", TagTypeID = 4 });
     //Add(new Tag { Name = "OOP", TagTypeID = 3 });
     //Add(new Tag { Name = "Json", TagTypeID = 3 });
     //Add(new Tag { Name = "XML", TagTypeID = 3 });
 }
 public TagTypeRepository(PortfolioContext context)
     : base(context)
 {
     //Add(new TagType { Name = "Category" });
     //Add(new TagType { Name = "Framework" });
     //Add(new TagType { Name = "Keyword" });
     //Add(new TagType { Name = "Programming Language" });
     //Add(new TagType { Name = "Tools" });
     //Add(new TagType { Name = "Other" });
 }
 public RelatedItemRepository(PortfolioContext context)
     : base(context)
 {
 }
Example #4
0
 public PortfolioItemLinkRepository(PortfolioContext context)
     : base(context)
 {
 }
Example #5
0
 public UserRepository(PortfolioContext context)
     : base(context)
 {
 }