VelocityDbSchema.Indexes.Customer.Customer C# (CSharp) Method

Customer() public method

public Customer ( string name ) : System
name string
return System
    public Customer(string name)
    {
      m_customerId = 0;
      m_name = name;
      m_orders = new VelocityDbList<Order>();
    }
Customer