Ejemplo n.º 1
0
        public News_TypeDTO Add(News_TypeDTO x)
        {
            var obj = x.toModel();

            try
            {
                db.News_Type.Add(obj);
                db.SaveChanges();
            }
            catch
            {
                return(null);
            }
            return(new News_TypeDTO(obj));
        }
Ejemplo n.º 2
0
        public News_TypeDTO Update(News_TypeDTO x)
        {
            var a = db.News_Type.Find(x.ID);

            if (a != null)
            {
                try
                {
                    a = x.toModel();
                    db.SaveChanges();
                }
                catch
                {
                    return(null);
                }
                return(new News_TypeDTO(a));
            }
            return(null);
        }