public void CreateAnInstanceOfEfDbContext()
        {
            // Arrange, Act
            var actualResult = EfDbContext.Create();

            // Assert
            Assert.IsInstanceOf <EfDbContext>(actualResult);
        }
Exemplo n.º 2
0
 public CategoryService() : base(new UnitOfWork(EfDbContext.Create()))
 {
 }
Exemplo n.º 3
0
 public ProductService() : base(new UnitOfWork(EfDbContext.Create()))
 {
 }