Пример #1
0
        public async Task<QuoteRequest> GetCurrentQuoteRequestAsync(string storeId, string customerId)
        {
            QuoteRequest quoteRequestModel = null;

            var criteria = new DataContracts.Quotes.QuoteRequestSearchCriteria
            {
                Count = 1,
                CustomerId = customerId,
                StoreId = storeId,
                Tag = "actual"
            };

            var quoteResponse = await _quoteClient.SearchAsync(criteria);

            if (quoteResponse != null)
            {
                var quoteRequest = quoteResponse.QuoteRequests.FirstOrDefault();
                if (quoteRequest != null)
                {
                    var detalizedQuoteRequest = await _quoteClient.GetByIdAsync(quoteRequest.Id);

                    if (detalizedQuoteRequest != null)
                    {
                        quoteRequestModel = detalizedQuoteRequest.ToViewModel();
                    }
                }
            }

            return quoteRequestModel;
        }
Пример #2
0
        public async Task <QuoteRequest> GetByNumberAsync(string storeId, string customerId, string number)
        {
            var searchCriteria = new DataContracts.Quotes.QuoteRequestSearchCriteria
            {
                Count      = 1,
                CustomerId = customerId,
                Start      = 0,
                StoreId    = storeId,
                Keyword    = number
            };

            QuoteRequest quoteRequestModel = null;

            var quoteResponse = await _quoteClient.SearchAsync(searchCriteria);

            if (quoteResponse != null)
            {
                var quoteRequest = quoteResponse.QuoteRequests.FirstOrDefault();
                if (quoteRequest != null)
                {
                    var detailedQuoteRequest = await _quoteClient.GetByIdAsync(quoteRequest.Id);

                    if (detailedQuoteRequest != null)
                    {
                        quoteRequestModel = detailedQuoteRequest.ToViewModel();
                    }
                }
            }

            return(quoteRequestModel);
        }
Пример #3
0
        public async Task <QuoteRequest> GetCurrentQuoteRequestAsync(string storeId, string customerId)
        {
            QuoteRequest quoteRequestModel = null;

            var criteria = new DataContracts.Quotes.QuoteRequestSearchCriteria
            {
                Count      = 1,
                CustomerId = customerId,
                StoreId    = storeId,
                Tag        = "actual"
            };

            var quoteResponse = await _quoteClient.SearchAsync(criteria);

            if (quoteResponse != null)
            {
                var quoteRequest = quoteResponse.QuoteRequests.FirstOrDefault();
                if (quoteRequest != null)
                {
                    var detalizedQuoteRequest = await _quoteClient.GetByIdAsync(quoteRequest.Id);

                    if (detalizedQuoteRequest != null)
                    {
                        quoteRequestModel = detalizedQuoteRequest.ToViewModel();
                    }
                }
            }

            return(quoteRequestModel);
        }
Пример #4
0
        public async Task<ItemCollection<QuoteRequest>> SearchAsync(QuoteRequestSearchCriteria criteria)
        {
            var searchCriteria = new DataContracts.Quotes.QuoteRequestSearchCriteria
            {
                Count = criteria.Take,
                CustomerId = criteria.CustomerId,
                Start = criteria.Skip,
                Status = criteria.Status,
                StoreId = criteria.StoreId,
                Tag = criteria.Tag
            };

            var quotesResponse = await _quoteClient.SearchAsync(searchCriteria);

            ItemCollection<QuoteRequest> quoteRequests = null;

            if (quotesResponse != null)
            {
                quoteRequests = new ItemCollection<QuoteRequest>(quotesResponse.QuoteRequests.Select(qr => qr.ToViewModel()));
            }

            return quoteRequests;
        }
Пример #5
0
        public async Task <ItemCollection <QuoteRequest> > SearchAsync(QuoteRequestSearchCriteria criteria)
        {
            var searchCriteria = new DataContracts.Quotes.QuoteRequestSearchCriteria
            {
                Count      = criteria.Take,
                CustomerId = criteria.CustomerId,
                Start      = criteria.Skip,
                Status     = criteria.Status,
                StoreId    = criteria.StoreId,
                Tag        = criteria.Tag
            };

            var quotesResponse = await _quoteClient.SearchAsync(searchCriteria);

            ItemCollection <QuoteRequest> quoteRequests = null;

            if (quotesResponse != null)
            {
                quoteRequests = new ItemCollection <QuoteRequest>(quotesResponse.QuoteRequests.Select(qr => qr.ToViewModel()));
            }

            return(quoteRequests);
        }
Пример #6
0
        public async Task<QuoteRequest> GetByNumberAsync(string storeId, string customerId, string number)
        {
            var searchCriteria = new DataContracts.Quotes.QuoteRequestSearchCriteria
            {
                Count = 1,
                CustomerId = customerId,
                Start = 0,
                StoreId = storeId,
                Keyword = number
            };

            QuoteRequest quoteRequestModel = null;

            var quoteResponse = await _quoteClient.SearchAsync(searchCriteria);

            if (quoteResponse != null)
            {
                var quoteRequest = quoteResponse.QuoteRequests.FirstOrDefault();
                if (quoteRequest != null)
                {
                    var detailedQuoteRequest = await _quoteClient.GetByIdAsync(quoteRequest.Id);
                    if (detailedQuoteRequest != null)
                    {
                        quoteRequestModel = detailedQuoteRequest.ToViewModel();
                    }
                }
            }

            return quoteRequestModel;
        }