Exemple #1
0
        public ActionResult UpdateRecordStatus(string CompanyCode, string DepotCode, string DepotName)
        {
            BL_DepotMaster _objdepotMaster = new BL_DepotMaster();
            int            lstResult       = 0;

            lstResult = _objdepotMaster.ChangingRecordStatus(CompanyCode, DepotCode, DepotName);
            return(Json(lstResult, JsonRequestBehavior.AllowGet));
        }
Exemple #2
0
        public ActionResult SearchDepotMasterDetails(string Comp_Code, string Depot_Code, string Depot_Name)
        {
            BL_DepotMaster    _objdepotMaster = new BL_DepotMaster();
            List <DepotModel> lstDepModel     = new List <DepotModel>();

            lstDepModel = _objdepotMaster.FindDepotDetails(Comp_Code, Depot_Code, Depot_Name);
            return(Json(lstDepModel, JsonRequestBehavior.AllowGet));
        }
Exemple #3
0
        public ActionResult GetDepotMasterDetails()
        {
            BL_DepotMaster    _objdepotMaster = new BL_DepotMaster();
            List <DepotModel> lstDepModel     = new List <DepotModel>();

            lstDepModel = _objdepotMaster.GetDepotDetails();
            return(Json(lstDepModel, JsonRequestBehavior.AllowGet));
        }
Exemple #4
0
        public int InsertDepotMaster(string DepCode, string DepName, string DepShtName, string Add1, string Add2, string phne, string mob, string DLN1, string DLN2, string GST, string RKey1)
        {
            BL_DepotMaster _objdepotMaster = new BL_DepotMaster();

            return(_objdepotMaster.InsertDepotDetails(DepCode, DepName, DepShtName, Add1, Add2, phne, mob, DLN1, DLN2, GST, RKey1));
        }