Ejemplo n.º 1
0
        private static void AddContentCategoryAll()
        {
            using var context = new InsuranceContext();

            var categories = new ContentCategory[]
            {
                new ContentCategory {
                    Id = 1, CategoryName = "Electronics"
                },
                new ContentCategory {
                    Id = 2, CategoryName = "Clothing"
                },
                new ContentCategory {
                    Id = 3, CategoryName = "Kitchen"
                },
            };

            foreach (var category in categories)
            {
                var entity = context.ContentCategory.Add(category);
                entity.State = EntityState.Added;
            }

            context.SaveChanges();
        }
Ejemplo n.º 2
0
        private static void DeleteContentCategoryAll()
        {
            using var context = new InsuranceContext();

            var contentCategories = context.ContentCategory.ToList();

            if (contentCategories.Count > 0)
            {
                foreach (var contentCategory in contentCategories)
                {
                    var entity = context.ContentCategory.Remove(contentCategory);
                    entity.State = EntityState.Deleted;
                }

                context.SaveChanges();
            }
        }
Ejemplo n.º 3
0
        private static void AddContentAll()
        {
            using var context = new InsuranceContext();

            var contents = new Content[]
            {
                new Content {
                    Id = 1, ContentCategoryId = 1, ContentName = "TV", Value = 2000
                },
                new Content {
                    Id = 2, ContentCategoryId = 1, ContentName = "Playstation", Value = 400
                },
                new Content {
                    Id = 3, ContentCategoryId = 1, ContentName = "Stereo", Value = 1600
                },
                new Content {
                    Id = 4, ContentCategoryId = 2, ContentName = "Shirts", Value = 1100
                },
                new Content {
                    Id = 5, ContentCategoryId = 2, ContentName = "Jeans", Value = 1100
                },
                new Content {
                    Id = 6, ContentCategoryId = 3, ContentName = "Pots and Pans", Value = 3000
                },
                new Content {
                    Id = 7, ContentCategoryId = 3, ContentName = "Flatware", Value = 500
                },
                new Content {
                    Id = 8, ContentCategoryId = 3, ContentName = "Knife Set", Value = 500
                },
                new Content {
                    Id = 9, ContentCategoryId = 3, ContentName = "Misc", Value = 1000
                },
            };

            foreach (var content in contents)
            {
                var entity = context.Content.Add(content);
                entity.State = EntityState.Added;
            }

            context.SaveChanges();
        }
Ejemplo n.º 4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PolicyRepository"/> class.
 /// </summary>
 /// <param name="context">The context<see cref="InsuranceContext"/>.</param>
 public PolicyRepository(InsuranceContext context)
 {
     _context = context;
 }