Exemplo n.º 1
0
        public JsonResult GetPartDetail(string part, string type, int?SheetId)
        {
            try
            {
                var Vpartdetail = _BillingService.GetPartDetail(part, type, SheetId);

                return(Json(new Result
                {
                    Status = ResultStatus.Success,
                    Message = "Success",
                    Data = Vpartdetail
                }, JsonRequestBehavior.AllowGet));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }