Sub-task #243
Updated by Ryan Supawarapong 5 months ago
the customerType will be an enum
type CustomerType int
const (
CustomerTypeIndividual CustomerType = iota + 1
CustomerTypeForeigner
CustomerTypeCorporate
)
Updated by Ryan Supawarapong 5 months ago
the customerType will be an enum
type CustomerType int
const (
CustomerTypeIndividual CustomerType = iota + 1
CustomerTypeForeigner
CustomerTypeCorporate
)