Пример #1
0
 public static List <CategoryModel> GetCategories(int year)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         return(dbContext.Categories.AsNoTracking().ToList());
     }
 }
Пример #2
0
 public static CategoryModel GetCategory(int year, int CategoryNb)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         return(dbContext.Categories.AsNoTracking().FirstOrDefault(g => g.CategoryNb == CategoryNb));
     }
 }
Пример #3
0
 public static void DeleteGuest(int year, int guestId)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.Database.ExecuteSqlCommand("exec DeleteGuest @guestId = {0}", guestId);
     }
 }
Пример #4
0
 public static GuestModel GetGuest(int year, int guestId)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         return(dbContext.Guests.AsNoTracking().FirstOrDefault(g => g.GuestID == guestId));
     }
 }
Пример #5
0
 public static List <GuestModel> GetGuests(int year)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         return(dbContext.Guests.AsNoTracking().ToList());
     }
 }
Пример #6
0
 public static void EditCategory(int year, CategoryModel CategoryToModify)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.Entry(CategoryToModify).State = EntityState.Modified;
         dbContext.SaveChanges();
     }
 }
Пример #7
0
 public static void DeleteCategory(int year, int categoryId)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.Database.ExecuteSqlCommand("exec DeleteCategory @categoryId = {0}", categoryId);
         dbContext.SaveChanges();
     }
 }
Пример #8
0
 public static void AddCategory(int year, CategoryModel CategoryToAdd)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.Categories.Add(CategoryToAdd);
         dbContext.SaveChanges();
     }
 }
Пример #9
0
 public static void EditGuest(int year, GuestModel guestToModify)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.Entry(guestToModify).State = EntityState.Modified;
         dbContext.SaveChanges();
     }
 }
Пример #10
0
 public static void AddGuest(int year, GuestModel guestToAdd)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.Guests.Add(guestToAdd);
         dbContext.SaveChanges();
     }
 }
Пример #11
0
 public static void ReplaceCategoryNominees(int year, List <CategoryNomineeModel> nominees)
 {
     using (var dbContext = new JojoscarDbContext(year))
     {
         dbContext.CategoryNominees.RemoveRange(dbContext.CategoryNominees);
         dbContext.CategoryNominees.AddRange(nominees);
         dbContext.SaveChanges();
     }
 }