示例#1
0
        public ActionResult GetAllStockOutChallanList()
        {
            List <string> products = stockOutService.GetAllStockChallan();

            if (products == null)
            {
                return(HttpNotFound());
            }
            // var result = AutoMapper.Mapper.Map<List<StockOut>, List<StockOutResponse>>(products);
            return(Json(products, JsonRequestBehavior.AllowGet));
        }