public void Insert(string Nombre, DateTime FechaDesde, DateTime FechaHasta, bool Activo)
        {
            FacTipoNomenclador item = new FacTipoNomenclador();

            item.Nombre = Nombre;

            item.FechaDesde = FechaDesde;

            item.FechaHasta = FechaHasta;

            item.Activo = Activo;


            item.Save(UserName);
        }
        public void Update(int IdTipoNomenclador, string Nombre, DateTime FechaDesde, DateTime FechaHasta, bool Activo)
        {
            FacTipoNomenclador item = new FacTipoNomenclador();

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

            item.IdTipoNomenclador = IdTipoNomenclador;

            item.Nombre = Nombre;

            item.FechaDesde = FechaDesde;

            item.FechaHasta = FechaHasta;

            item.Activo = Activo;

            item.Save(UserName);
        }
 public bool Destroy(object IdTipoNomenclador)
 {
     return(FacTipoNomenclador.Destroy(IdTipoNomenclador) == 1);
 }
 public bool Delete(object IdTipoNomenclador)
 {
     return(FacTipoNomenclador.Delete(IdTipoNomenclador) == 1);
 }