Exemplo n.º 1
0
        public async Task <IActionResult> Post(string Company)
        {
            DBModels       dbModel   = new DBModels();
            ProductList_OK reqResult = new ProductList_OK()
            {
                ProductDetail = await dbModel.GetAllProductDetail(Company)
            };

            return(Ok(reqResult));
        }