예제 #1
0
        public IList <MiscellaneousProduct> GetAllMiscellaneousProducts()
        {
            var command = new GetAllMiscellaneousProducts();

            command.Execute();
            return(command.Result);
        }
예제 #2
0
        public void ExecuteTest()
        {
            var command = new GetAllMiscellaneousProducts();

            command.Execute();
            var actual = command.Result;

            Assert.AreEqual(10, actual.Count);
        }