T
TG
I am trying to figure out how to code for this scenario:
WebFedExZones
WebFedExZoneID int
FedExZone int can have nulls which indicates we cannot
ship there
ZipCodeStart varchar(3)
ZipCodeEnd Varchar(3)
WebFedExRates
WebFedExRateID int
Weight int
FedExZone int corresponds to the FedExZone in WebFexExZones
ShippingCharge money
We only ship to Zones 2 – 8.
To encapsulate this, we need a new class with one function to
determine the shipping charge given a zip code and weight.
This Has to be done in a vb class for asp.net
WebFedExZones
WebFedExZoneID int
FedExZone int can have nulls which indicates we cannot
ship there
ZipCodeStart varchar(3)
ZipCodeEnd Varchar(3)
WebFedExRates
WebFedExRateID int
Weight int
FedExZone int corresponds to the FedExZone in WebFexExZones
ShippingCharge money
We only ship to Zones 2 – 8.
To encapsulate this, we need a new class with one function to
determine the shipping charge given a zip code and weight.
This Has to be done in a vb class for asp.net