1234567891011121314151617181920212223242526272829303132 |
- namespace iBemsDataService.Model
- {
- using System;
- using System.Collections.Generic;
-
- public partial class BemsPriceCode
- {
- public BemsPriceCode()
- {
- this.BemsSitePrice = new HashSet<BemsSitePrice>();
- this.BemsSitePriceHistory = new HashSet<BemsSitePriceHistory>();
- }
-
- public string PriceCode { get; set; }
- public string PriceCodeDesc { get; set; }
- public short FuelTypeId { get; set; }
- public string Unit { get; set; }
-
- public virtual ICollection<BemsSitePrice> BemsSitePrice { get; set; }
- public virtual ICollection<BemsSitePriceHistory> BemsSitePriceHistory { get; set; }
- public virtual BemsFuelType BemsFuelType { get; set; }
- }
- }
|