示例#1
0
        public IActionResult CategoryCreate([FromBody] NameModel model)
        {
            if (string.IsNullOrEmpty(model.name))
            {
                return(BadRequest("İsim Boş Bırakılamaz."));
            }
            Category category = new Category
            {
                Id           = new Guid(),
                CategoryName = model.name
            };

            _db.Add(category);
            _db.SaveChanges();

            return(Ok("Kayıt Başarılı"));
        }