예제 #1
0
        public void GetProfit__ReturnsProfit()
        {
            var actual = _repo.GetProfit();

            Assert.IsTrue(actual == 1327.5);
        }
예제 #2
0
        public IActionResult GetProfit()
        {
            var answer = _raportReporisotry.GetProfit();

            return(Ok(answer));
        }