public void Insert(string Nombre) { AprCondicionIngreso item = new AprCondicionIngreso(); item.Nombre = Nombre; item.Save(UserName); }
public void Update(int IdCondicionAlIngreso, string Nombre) { AprCondicionIngreso item = new AprCondicionIngreso(); item.MarkOld(); item.IsLoaded = true; item.IdCondicionAlIngreso = IdCondicionAlIngreso; item.Nombre = Nombre; item.Save(UserName); }