Exemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BaseManagement" /> class.
 /// </summary>
 /// <param name="dbContext">The database context.</param>
 protected BaseManagement(WeddingCDDbContext dbContext, IConfiguration configuration)
 {
     this.dbContext     = dbContext;
     this.configuration = configuration;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GalleryManagement" /> class.
 /// </summary>
 /// <param name="dbContext">The database context.</param>
 public GalleryManagement(WeddingCDDbContext dbContext, IConfiguration configuration)
     : base(dbContext, configuration)
 {
 }