Beispiel #1
0
        public HttpResponseMessage GetQuoteFromAllVendors(int custId, int adminId, string icao)
        {
            ItemResponse <CustomerPriceMarginsCollection> response = new ItemResponse <CustomerPriceMarginsCollection>();

            response.Item = CustomerPriceMarginsService.GetCustomerPriceMarginForAllVendors(custId, adminId, icao);
            return(Request.CreateResponse(response));
        }