public async Task <IActionResult> PutCountryMaster(int id, CountryMaster countryMaster) { if (id != countryMaster.CountryId) { return(BadRequest()); } _context.Entry(countryMaster).State = EntityState.Modified; try { await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CountryMasterExists(id)) { return(NotFound()); } else { throw; } } return(NoContent()); }
public ActionResult Create(CountryMasterVM c) { CountryMaster obj = new CountryMaster(); int max = (from a in db.CountryMasters orderby a.CountryID descending select a.CountryID).FirstOrDefault(); if (max == null) { obj.CountryID = 1; obj.CountryName = c.CountryName; obj.CountryCode = c.CountryCode; obj.IATACode = c.IATACode; } else { obj.CountryID = max + 1; obj.CountryName = c.CountryName; obj.CountryCode = c.CountryCode; obj.IATACode = c.IATACode; } db.CountryMasters.Add(obj); db.SaveChanges(); TempData["SuccessMsg"] = "You have successfully added Country."; return(RedirectToAction("Index")); }
public async Task <ActionResult <CountryMaster> > PostCountryMaster(CountryMaster countryMaster) { _context.Country.Add(countryMaster); await _context.SaveChangesAsync(); return(CreatedAtAction("GetCountryMaster", new { id = countryMaster.CountryId }, countryMaster)); }
internal void Init_from_DRWIN_sec(Models.Securities.Security dr_sec) { if (dr_sec == null) { return; } this.security_name.Value = dr_sec.Name.Value; this.cusip.Value = dr_sec.CUSIP.Value; this.isin.Value = dr_sec.ISIN.Value; this.sedol.Value = dr_sec.Sedol.Value; Country cty = CountryMaster.GetCountry_name(dr_sec.Country.Value); if (cty != null) { ESPsys esys = ESPsys_master.Get_ESPsys_coi(cty.cntry_cd.Value); if (esys != null) { this.esp_system_id.Value = esys.esp_system_id; } else { this.esp_system_id.Value = 11; // 11 is for italy } } }
public async Task <IHttpActionResult> PutCountryMaster(int id, CountryMaster countryMaster) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } if (id != countryMaster.Id) { return(BadRequest()); } db.Entry(countryMaster).State = EntityState.Modified; try { await db.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!CountryMasterExists(id)) { return(NotFound()); } else { throw; } } return(StatusCode(HttpStatusCode.NoContent)); }
public async Task AddCountryMaster(CountryMaster prodData) { var maxId = await WithConnection(async c => { return(await c.QueryAsync <int>("SELECT max(CountryIndex) FROM CountryMaster")); }); //Setting Primary Key if (maxId.SingleOrDefault() == 0) { prodData.CountryIndex = 1; } else { prodData.CountryIndex = maxId.SingleOrDefault() + 1; } //Filling Other Records like User Id, Creation & Update Date prodData.CreateUserIndex = 1; //Later Logged in User prodData.UpdateUserIndex = 1; //Later Logged in User prodData.CreateDateTime = DateTime.Now; prodData.UpdateDateTime = DateTime.Now; await WithConnection(async c => { return(await c.QueryAsync <int>(SQLConstants.InsertCountryMaster, prodData)); }); }
public int Save(CountryMaster country, string CRUDAction, out string ErrorCode) { int result = 0; ErrorCode = "-1"; using (SqlCommand objcmd = new SqlCommand()) { try { objcmd.CommandType = CommandType.StoredProcedure; objcmd.CommandText = "STP_InsertUpdateCountryMaster"; objcmd.Parameters.Add(new SqlParameter("@CountryID", country.CountryID)).Direction = ParameterDirection.InputOutput; objcmd.Parameters.Add(new SqlParameter("@CountryName", country.CountryName)); objcmd.Parameters.Add(new SqlParameter("@Status", country.Status)); objcmd.Parameters.Add(new SqlParameter("@remark", country.Remark)); objcmd.Parameters.Add(new SqlParameter("@CreatedBy", country.CreatedBy)); objcmd.Parameters.Add(new SqlParameter("@ModifiedBy", country.ModifiedBy)); objcmd.Parameters.Add(new SqlParameter("@CRUDAction", CRUDAction)); objcmd.Parameters.Add(new SqlParameter("@ErrorCode", SqlDbType.VarChar, 20)).Direction = ParameterDirection.Output; result = DBconnection.ExecuteNonQuery(objcmd); country.CountryID = Convert.ToInt64("0" + objcmd.Parameters["@CountryID"].Value); ErrorCode = Convert.ToString(objcmd.Parameters["@ErrorCode"].Value); } catch (Exception ex) { throw ex; } finally { objcmd.Dispose(); } } return(result); }
public IActionResult Index(CountryMaster CountryMaster) { //-- validation -------// if (CountryMaster.ID == 0) { ModelState.AddModelError("", "Select Country"); } //---- Getting Selected Value int SelectedValue = CountryMaster.ID; ViewBag.SelectedValue = CountryMaster.ID; //--- Setting Data back to ViewBag after Posting Form --- List <CountryMaster> countryList = new List <Models.CountryMaster>(); countryList = (from product in _context.CountryMaster select product).ToList(); countryList.Insert(0, new CountryMaster { ID = 0, Name = "Select" }); ViewBag.ListofCountry = countryList; return(View()); }
/// <summary> /// Extract information from [Security] /// </summary> private void XBRL_from_Security(Security sec) { if (sec == null) { return; } this.Issue.Value = sec.Name.Value; this.CUSIP.Value = sec.CUSIP.Value; this.ISIN.Value = sec.ISIN.Value; this.TickerSymbol.Value = sec.TickerSymbol.Value; this.SEDOL.Value = sec.Sedol.Value; this.Country.Value = sec.Country.Value; Country cty = CountryMaster.GetCountry_name(sec.Country.Value); if (cty != null) { this.ISO2CntryCode.Value = cty.cntry_cd.Value; } this.Depositary.Value = sec.Depositary.Value; this.Sponsored.Value = !sec.Depositary.Value.Equals(Depositaries.Depositary.Unsponsored, StringComparison.OrdinalIgnoreCase); this.FirstFiler.Value = sec.FirstFiler.Value; this.ADR_Ratio_ADR.Value = sec.ADR_RATIO_ADR.Value; this.ADR_Ratio_ORD.Value = sec.ADR_RATIO_ORD.Value; }
public ActionResult DeleteConfirmed(int id) { CountryMaster countryMaster = db.CountryMasters.Find(id); db.CountryMasters.Remove(countryMaster); db.SaveChanges(); return(RedirectToAction("Index")); }
public JsonResult Get([FromBody] CountryMaster m) { var response = _context.Add(m); _context.SaveChanges(); return(Json(new { sucess = true, result = "countryname" })); }
public ActionResult DeleteConfirmed(int id) { CountryMaster countrymaster = db.CountryMasters.Find(id); db.CountryMasters.Remove(countrymaster); db.SaveChanges(); TempData["SuccessMsg"] = "You have successfully Deleted Country."; return(RedirectToAction("Index")); }
public async Task <ActionResult> DeleteConfirmed(int id) { CountryMaster countryMaster = await db.CountryMasters.FindAsync(id); db.CountryMasters.Remove(countryMaster); await db.SaveChangesAsync(); return(RedirectToAction("Index")); }
public ActionResult Edit(CountryMaster countrymaster) { if (ModelState.IsValid) { objSourceMastersModel.SaveCountryById(countrymaster); ViewBag.SuccessMsg = "You have successfully updated Country."; return(View("Index", objSourceMastersModel.GetCountry())); } return(View(countrymaster)); }
// // GET: /Country/Details/5 public ActionResult Details(int id = 0) { CountryMaster country = objSourceMastersModel.GetCountryById(id); if (country == null) { return(HttpNotFound()); } return(View(country)); }
// // GET: /CountryMaster/Details/5 public ActionResult Details(int id = 0) { CountryMaster countrymaster = db.CountryMasters.Find(id); if (countrymaster == null) { return(HttpNotFound()); } return(View(countrymaster)); }
public ActionResult Edit([Bind(Include = "CountryId,CountryName")] CountryMaster countryMaster) { if (ModelState.IsValid) { db.Entry(countryMaster).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(countryMaster)); }
public async Task <IHttpActionResult> Create(CountryMaster prodData) { if (prodData != null) { await CountryMasterDA.AddCountryMaster(prodData); return(Ok()); } return(BadRequest("Request cannot be NULL")); }
public static void Save(CountryMaster countryMaster) { if (countryMaster.CountryID == 0) { //secModule.CreatedBy = Convert.ToInt32(HttpContext.Current.User.Identity.Name); DbContextHelper.DbContext.Add(countryMaster); } DbContextHelper.DbContext.SaveChanges(); }
private void Init_countries() { List <Country> list = CountryMaster.GetAll_countryList(); foreach (Country cty in list) { this.cty_itemID_dic[cty.name] = this.cty_checkedListBox.Items.Count; this.cty_checkedListBox.Items.Add(cty.name); } }
public async Task <ActionResult> Edit([Bind(Include = "ID,Name")] CountryMaster countryMaster) { if (ModelState.IsValid) { db.Entry(countryMaster).State = EntityState.Modified; await db.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(countryMaster)); }
public ActionResult Create([Bind(Include = "CountryId,CountryName")] CountryMaster countryMaster) { if (ModelState.IsValid) { db.CountryMasters.Add(countryMaster); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(countryMaster)); }
public async Task <IHttpActionResult> GetCountryMaster(int id) { CountryMaster countryMaster = await db.Countries.FindAsync(id); if (countryMaster == null) { return(NotFound()); } return(Ok(countryMaster)); }
public ActionResult DeleteConfirmed(int id) { if (Session["admin"] == null) { return(RedirectToAction("Index", "adminLogin")); } CountryMaster countryMaster = db.CountryMasters.Find(id); db.CountryMasters.Remove(countryMaster); db.SaveChanges(); return(RedirectToAction("Index")); }
public List <CountryMaster> Get(QueryBO objQuery) { SqlDataReader reader = null; SqlConnection con = null; List <CountryMaster> lstCountry = null; SqlCommand objcmd = null; CountryMaster objCountry = null; try { lstCountry = new List <CountryMaster>(); using (con = DBconnection.ConnectToDB()) { objcmd = new SqlCommand(); objcmd.Connection = con; objcmd.CommandType = CommandType.StoredProcedure; objcmd.CommandText = "STP_SelectCountryMaster"; objcmd.Parameters.Add(new SqlParameter("@PageNumber", objQuery.PageNumber)); objcmd.Parameters.Add(new SqlParameter("@PageSize", objQuery.PageSize)); objcmd.Parameters.Add(new SqlParameter("@Filter", objQuery.Filter)); objcmd.Parameters.Add(new SqlParameter("@Sort", objQuery.Sort)); objcmd.Parameters.Add(new SqlParameter("@TotalRecords", SqlDbType.Int)).Direction = ParameterDirection.Output; reader = objcmd.ExecuteReader(); if (reader != null && reader.HasRows) { while (reader.Read()) { objCountry = new CountryMaster(); objCountry.CountryID = Convert.ToInt64(reader["CountryID"]); objCountry.CountryName = Convert.ToString("" + reader["CountryName"]); objCountry.Status = Convert.ToInt16("" + reader["Status"]); objCountry.strStatus = Convert.ToString("" + reader["strStatus"]); objCountry.Remark = Convert.ToString("" + reader["Remark"]); objCountry.strStatus = Convert.ToString("" + reader["strStatus"]); lstCountry.Add(objCountry); } } } objQuery.TotalRecords = Convert.ToInt32(objcmd.Parameters["@TotalRecords"].Value); } catch (Exception ex) { throw ex; } finally { reader.Dispose(); objcmd = null; con = null; } return(lstCountry); }
public async Task <IActionResult> PostCountry([FromBody] CountryMaster obj) { if (!ModelState.IsValid) { return(Ok(ModelState.ResponseValidation())); } obj.IsActive = true; await _iCountryRepository.Insert(obj); return(Ok(APIResponse.SetResponse(APIResponseStatus.Ok, "Country save successfully.", APIOpStatus.Success, obj))); }
static void Main(string[] args) { CountryMaster obj1 = new CountryMaster(); obj1.Insert(); CustomerClass obj2 = new CustomerClass(); obj2.Insert(); Console.WriteLine(CommonRoutine.count.ToString()); Console.ReadLine(); }
public async Task <ActionResult> Create([Bind(Include = "ID,Name")] CountryMaster countryMaster) { if (ModelState.IsValid) { db.CountryMasters.Add(countryMaster); await db.SaveChangesAsync(); return(RedirectToAction("Index")); } return(View(countryMaster)); }
public async Task Update(CountryMaster countryMaster) { try { _context.Entry(countryMaster).State = EntityState.Modified; await _context.SaveChangesAsync(); } catch (Exception ex) { throw ex; } }
public async Task <IHttpActionResult> PostCountryMaster(CountryMaster countryMaster) { if (!ModelState.IsValid) { return(BadRequest(ModelState)); } db.Countries.Add(countryMaster); await db.SaveChangesAsync(); return(CreatedAtRoute("DefaultApi", new { id = countryMaster.Id }, countryMaster)); }