protected override void Given()
        {
            base.Given();

            _models = new List <Product>
            {
                ProductMother.Typical(),
                    ProductMother.Typical()
            };

            _originalCount = SUT.CountAsync().Result;
        }
        protected override void Given()
        {
            base.Given();

            _model = ProductMother.Typical();
        }