public async Task GetPaperPrice()
        {
            var paperPrice1 = await _portfolioService.GetPaperPrice(10, 1);

            var paperPrice2 = await _portfolioService.GetPaperPrice(11, 1);

            var paperPrice3 = await _portfolioService.GetPaperPrice(12, 2);

            var paperPrice4 = await _portfolioService.GetPaperPrice(12, 1);

            Assert.IsTrue(paperPrice1.IsSuccess, "Неуспешное выполнение операции");
            Assert.AreEqual(434720 * 2 + 22658 * 20 + 101840 + 106283, paperPrice1.Result, "Неверная оценка");

            Assert.IsTrue(paperPrice2.IsSuccess, "Неуспешное выполнение операции");
            Assert.AreEqual(22658 * 10, paperPrice2.Result, "Неверная оценка");

            Assert.IsTrue(paperPrice3.IsSuccess, "Неуспешное выполнение операции");
            Assert.AreEqual(434720, paperPrice3.Result, "Неверная оценка");

            Assert.IsFalse(paperPrice4.IsSuccess, "Прибыль в чужом портфеле");
        }