Exemple #1
0
        public LoadingDetailsForPrintResponse GetLoadingDetailsToPrintByLoadingId(JObject input)
        {
            LoadingDetailsForPrintResponse objresponse = new LoadingDetailsForPrintResponse();

            try
            {
                objresponse = objBookingBal.GetLoadingDetailsToPrintByLoadingId(input);
            }
            catch (Exception ex)
            {
                objresponse.StatusId      = 0;
                objresponse.StatusMessage = ex.Message;
            }
            return(objresponse);
        }
Exemple #2
0
        public LoadingDetailsForPrintResponse GetLoadingDetailsToPrintByLoadingId(JObject input)
        {
            LoadingDetailsForPrintResponse objresponse = new LoadingDetailsForPrintResponse();

            try
            {
                int loadingid = Convert.ToInt32(CommonMethods.URLKeyDecrypt(Convert.ToString(input["LoadingId"])));

                objresponse = objBookingDal.GetLoadingDetailsToPrintByLoadingId(loadingid);
            }
            catch (Exception ex)
            {
                objresponse.StatusId      = 0;
                objresponse.StatusMessage = ex.Message;
            }
            return(objresponse);
        }