// GET: api/TipoSeguro/5 public TIPOSEGURO Get(int id) { TIPOSEGURO tiposeguro = db.TIPOSEGURO.Find(id); if (tiposeguro == null) { return(null); } else { return(tiposeguro); } }
public void create(string ds_tiposeguro, int carencia) { TIPOSEGURO tiposeguro = new TIPOSEGURO(); tiposeguro.CARENCIA = carencia; tiposeguro.DS_TIPOSEGURO = ds_tiposeguro; tiposeguro.IDTIPOSEGURO += db.TIPOSEGURO.ToList().Count() + 1; if (tiposeguro != null) { try { db.TIPOSEGURO.Add(tiposeguro); db.SaveChanges(); } catch (Exception ex) { } } }