public ActionResult Index(Discountper model, FormCollection form)
 {
     try
     {
         if (ModelState.IsValid)
         {
             string statusDDLValue = form["Statusddl"].ToString();
             //var clientId= entity.InsertUpdateSelectAdmin(0, model.name, model.Address, model.MobileNo, model.EmailId, genderDDLValue, model.dob, model.countryId, model.stateId, model.cityId, 1, );
             using (var context = new LoyaltyManagementSystemEntities())
             {
                 var discountper = new LMS_Datas.Discountper()
                 {
                     Persons      = model.Persons,
                     DiscountRate = model.DiscountRate,
                     Activate     = Boolean.Parse(statusDDLValue)
                 };
                 context.Discountpers.Add(discountper);
                 context.SaveChanges();
             }
             ViewBag.alert = "Success";
             return(View());
         }
         ViewBag.alert = "Error";
         return(View(model));
     }
     catch (Exception e1)
     {
         ViewBag.alert = "Error";
         return(View());
     }
 }
        public string EditDiscount(Discountper Model)
        {
            string msgClient;

            try
            {
                if (ModelState.IsValid)
                {
                    var enditedDiscountValue = new LMS_Datas.Discountper
                    {
                        DiscountRate  = Model.DiscountRate,
                        Persons       = Model.Persons,
                        Activate      = true,
                        DiscountPerId = Model.DiscountPerId
                    };

                    entity.Discountpers.Attach(enditedDiscountValue);
                    entity.Entry(enditedDiscountValue).Property(x => x.DiscountPerId).IsModified = true;
                    entity.Entry(enditedDiscountValue).Property(x => x.Activate).IsModified      = true;
                    entity.Entry(enditedDiscountValue).Property(x => x.Persons).IsModified       = true;
                    entity.Entry(enditedDiscountValue).Property(x => x.DiscountRate).IsModified  = true;
                    entity.SaveChanges();
                    msgClient = "Saved Successfully";
                }
                else
                {
                    msgClient = "Validation data not successfully";
                }
            }
            catch (Exception ex)
            {
                msgClient = "Error in Retriving Data";
            }
            return(msgClient);
        }