Ejemplo n.º 1
0
        public static coreModel.TierPrice ToCoreModel(this webModel.TierPrice tierPrice)
        {
            var retVal = new coreModel.TierPrice();

            retVal.InjectFrom(tierPrice);
            return(retVal);
        }
Ejemplo n.º 2
0
 public static webModel.TierPrice ToWebModel(this coreModel.TierPrice tierPrice)
 {
     var retVal = new webModel.TierPrice();
     retVal.InjectFrom(tierPrice);
     return retVal;
 }