public async Task <bool> AddCategory(CategoryModel obj)
        {
            try
            {
                Category cat = new Category();
                if (obj != null)
                {
                    cat.Cid      = obj.Cid;
                    cat.Cname    = obj.Cname;
                    cat.Cdetails = obj.Cdetails;
                }
                _context.Add(cat);
                var res = await _context.SaveChangesAsync();

                if (res > 0)
                {
                    return(true);
                }
                else
                {
                    return(false);
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
示例#2
0
        public async Task <bool> AddCategory(Category obj)
        {
            try
            {
                _context.Add(obj);
                await _context.SaveChangesAsync();

                return(true);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }