Beispiel #1
0
 public void Insert(Platform platform)
 {
     entity.Add(platform);
     context.SaveChanges();
 }
Beispiel #2
0
 public void Insert(UserStatus userStatus)
 {
     entity.Add(userStatus);
     context.SaveChanges();
 }
 public void Insert(Genre genre)
 {
     entity.Add(genre);
     context.SaveChanges();
 }
Beispiel #4
0
 public void Insert(UserProfileCommentPermission userProfileCommentPermission)
 {
     entity.Add(userProfileCommentPermission);
     context.SaveChanges();
 }
Beispiel #5
0
 public void Insert(Publisher publisher)
 {
     entity.Add(publisher);
     context.SaveChanges();
 }
 public void Insert(Developer developer)
 {
     entity.Add(developer);
     context.SaveChanges();
 }
 public void Insert(NewsArticleCategory newsArticleCategory)
 {
     entity.Add(newsArticleCategory);
     context.SaveChanges();
 }
Beispiel #8
0
 public void Insert(UserRole userRole)
 {
     entity.Add(userRole);
     context.SaveChanges();
 }
Beispiel #9
0
 public void Insert(T item)
 {
     entity.Add(item);
     context.SaveChanges();
 }
Beispiel #10
0
 public void Insert(Game game)
 {
     entity.Add(game);
     context.SaveChanges();
 }
 public void Insert(UserProfileVisibility userProfileVisibility)
 {
     entity.Add(userProfileVisibility);
     context.SaveChanges();
 }
 public void Insert(UserProfileComment userProfileComment)
 {
     entity.Add(userProfileComment);
     context.SaveChanges();
 }
 public void Insert(NewsArticle newsArticle)
 {
     entity.Add(newsArticle);
     context.SaveChanges();
 }