Exemplo n.º 1
0
        public HttpResponseMessage GetFuelOrderCustomerPricing(int fuelOrderId)
        {
            ItemsResponse <FuelOrderCustomerPricings> response = new ItemsResponse <FuelOrderCustomerPricings>();

            response.Items = FuelOrderCustomerPricingsService.GetFuelOrderCustomerPricingByFuelOrderId(fuelOrderId);
            return(Request.CreateResponse(response));
        }