public List <Order> GetOrderByCustomerId(int customerId)
        {
            List <Order> listOrders = ODAL.GetOrderByCustomerId(customerId);

            return(listOrders);
        }
Example #2
0
 public void GetOrderByCustomerId(int id)
 {
     Assert.NotNull(ODAL.GetOrderByCustomerId(id));
 }