Exemplo n.º 1
0
        public CategoryService(string connectionsString)
        {
            var optionsBuilder = new DbContextOptionsBuilder();

            optionsBuilder.UseNpgsql(connectionsString);
            _db = new ProductsCategoryServiceContext(optionsBuilder.Options);
        }
Exemplo n.º 2
0
 internal CategoryService(ProductsCategoryServiceContext db)
 {
     _db = db;
 }