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