Пример #1
0
        public Quote Create(Quote newQuote)
        {
            int id = _repo.Create(newQuote);

            newQuote.Id = id;
            return(newQuote);
        }