예제 #1
0
        public IActionResult GetReportList()
        {
            //TODO: Move to constancts
            int proudctId = 4;

            return(Ok(_reportsRepository.GetReportList(proudctId)));
        }
예제 #2
0
        public void GetReportListTest(int ProductId)
        {
            List <ReportInfo> res = _repoRepository.GetReportList(ProductId);

            Assert.True(res.Count > 0);
        }