Beispiel #1
0
        public Quote(			
            int rank,
            int address_ID,
            int entityLineItemId,
            string bandwidthDesc,
            string productDesc,
            decimal mrcUSD,
            string vendor,
            string vendor_Type,
            int priceTermId,
            decimal incrementalMrCost,
            decimal? incrementalNrCost,
            bool isWin,
            int? bandwidthEthernet,
            int bandwidthCapacity,
            DateTime quoteCreateDate,
            string premise,
            string street,
            string city,
            string state,
            string addressCLLI,
            string swcCLLI,
            decimal distance,
            LatLng latLng)
            : base(address_ID)
        {
            this.Premise = premise;
            this.Street = street;
            this.City = city;
            this.State = state;
            this.AddressClli = addressCLLI;
            this.SwcCLLI = swcCLLI;

            this.Rank = rank;
            this.EntityLineItemId = entityLineItemId;
            this.BandwidthDesc = bandwidthDesc;
            this.ProductDesc = productDesc;
            this.mrcUSD = mrcUSD;
            this.Vendor = vendor;
            this.VendorType = vendor_Type;
            this.PriceTermId = priceTermId;
            this.distance = distance;
            this.IncrementalMrCost = incrementalMrCost;
            this.IncrementalNrCost = incrementalNrCost;
            this.IsWin = isWin;
            this.BandwidthEthernet = bandwidthEthernet;
            this.BandwidthCapacity = bandwidthCapacity;
            this.QuoteCreateDate = quoteCreateDate;
            this.LatLng = latLng;
        }
Beispiel #2
0
 public IList<ICoordShape> getPolygons(LatLng bottomLeft, LatLng topRight)
 {
     return getPolygons(bottomLeft.Lat, bottomLeft.Lng, topRight.Lat, topRight.Lng);
 }
Beispiel #3
0
 /// <summary>
 /// Constructor setting readonly object
 /// </summary>
 /// <param name="services">The services available at this location in integer format</param>
 /// <param name="addressId">The addressID in the database for this object.</param>
 /// <param name="latlng">The latitude/longitude pair of the location</param>
 public ServiceDeliveryPoint(int services, int addressId, LatLng latlng)
 {
     this.Services = services;
     this.AddressID = addressId;
     this.LatLng = latlng;
 }