internal static bool EditBranchData(BranchMasterEntity branchEntity, bool saveStatus)
        {
            HttpClient          client   = Utility.NewClient();
            HttpResponseMessage response = client.PostAsJsonAsync("api/AdminService/EditBranch", branchEntity).Result;

            if (response.IsSuccessStatusCode)
            {
                saveStatus = JsonConvert.DeserializeObject <bool>(response.Content.ReadAsStringAsync().Result);
            }

            return(saveStatus);
        }
Example #2
0
        // GET: Branch

        public ActionResult Index()
        {
            //BranchMasterEntity _BranchMasterEntity = new BranchMasterEntity();
            //return View(_BranchMasterEntity);

            BranchMasterEntity _BranchMasterEntity = new BranchMasterEntity();

            ViewBag.BranchDetails = _BranchMasterEntity;

            ViewBag.CountryList = CountryHelper.GetCountryData();

            ViewBag.StateByCountryList = StateByCountryHelper.GetStateByCountryData("0");

            return(View());
        }
Example #3
0
        public ActionResult EditDetails(BranchMasterEntity branchEntity)
        {
            ViewBag.BranchDetails = new BranchMasterEntity();

            ViewBag.CountryList        = CountryHelper.GetCountryData();
            ViewBag.StateByCountryList = StateByCountryHelper.GetStateByCountryData("0");

            if (ModelState.IsValid)
            {
                //Use Namespace called :  System.IO
                //string FileName = Path.GetFileNameWithoutExtension(branchEntity.ImageFile.FileName);

                ////To Get File Extension
                //string FileExtension = Path.GetExtension(branchEntity.ImageFile.FileName);

                ////Add Current Date To Attached File Name
                //FileName = DateTime.Now.ToString("yyyyMMdd") + "-" + FileName.Trim() + FileExtension;

                ////Get Upload path from Web.Config file AppSettings.
                ////string UploadPath = ConfigurationManager.AppSettings["UserImagePath"].ToString();

                ////Its Create complete path to store in server.
                //branchEntity.ImagePath = Path.Combine(Server.MapPath("~/Content/BranchLogo"),
                //                           Path.GetFileName(FileName)); // UploadPath + FileName;

                ////To copy and save file into server.
                //branchEntity.ImageFile.SaveAs(branchEntity.ImagePath);


                bool saveStatus = false;
                saveStatus         = BranchHelper.EditBranchData(branchEntity, saveStatus);
                ViewBag.SaveStatus = saveStatus;
            }

            return(View(branchEntity));
        }