예제 #1
0
        public void Insert(string Nombre)
        {
            SysNivelInstruccion item = new SysNivelInstruccion();

            item.Nombre = Nombre;


            item.Save(UserName);
        }
예제 #2
0
        public void Update(int IdNivelInstruccion, string Nombre)
        {
            SysNivelInstruccion item = new SysNivelInstruccion();

            item.MarkOld();
            item.IsLoaded = true;

            item.IdNivelInstruccion = IdNivelInstruccion;

            item.Nombre = Nombre;

            item.Save(UserName);
        }