public void Should_FindTheOrderByItemName()
        {
            var orderRepository = MockRepository.GenerateMock<IOrderRepository>();
            var viewOrder = MockRepository.GenerateMock<IViewOrder>();
            var customerService = new CustomerService(orderRepository,viewOrder);

            customerService.FindByItemName("Computer");

            orderRepository.AssertWasCalled(x=>x.FindByItemDescripton(Arg<String>.Matches(Rhino.Mocks.Constraints.Text.Contains("Compu"))));
            orderRepository.AssertWasCalled(x=>x.FindByItemDescripton(Arg<String>.Matches(Rhino.Mocks.Constraints.Text.Like("Com.*"))));
        }