/// <summary>
 /// Builds the manager with a specific customer and database context
 /// </summary>
 /// <param name="customer">The customer that is making the orders</param>
 /// <param name="bc">The databse context to use</param>
 public OrderManager(Customer customer, BusinessContext bc)
 {
     this.customer = customer;
     this.bc       = bc;
 }