aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerghei Cebotari <serghei@cebotari.ru>2023-11-14 12:00:20 +0300
committerSerghei Cebotari <serghei@cebotari.ru>2023-11-14 12:00:20 +0300
commit4857c066300255312d1e1736f2a03c256c6a9501 (patch)
treec33f908dfdf91bf2f0aca35724a3c9e1322991ce
parentd3c17493608f1657c490fb8cbe1f6ba427140137 (diff)
Add POST methods
-rw-r--r--MindBoxApi/Controllers/CategoryController.cs20
-rw-r--r--MindBoxApi/Controllers/ItemController.cs17
-rw-r--r--MindBoxApi/Controllers/ProductController.cs17
3 files changed, 53 insertions, 1 deletions
diff --git a/MindBoxApi/Controllers/CategoryController.cs b/MindBoxApi/Controllers/CategoryController.cs
index 960a3cb..dd706f4 100644
--- a/MindBoxApi/Controllers/CategoryController.cs
+++ b/MindBoxApi/Controllers/CategoryController.cs
@@ -13,7 +13,8 @@ public class CategoryController : ControllerBase
_helper = helper;
}
[HttpGet]
- public IEnumerable<Category> GetCategories() {
+ public IEnumerable<Category> GetCategories()
+ {
var command = _helper.Connection.CreateCommand();
command.CommandText =
@"
@@ -31,4 +32,21 @@ public class CategoryController : ControllerBase
}
}
}
+
+ [HttpPost]
+ public IActionResult PostCategory([FromBody] Category category)
+ {
+ var command = _helper.Connection.CreateCommand();
+ command.CommandText =
+ $"INSERT INTO categories (category_id, category_name) VALUES ({category.Id}, '{category.Name}')";
+ try
+ {
+ command.ExecuteNonQuery();
+ return Ok();
+ }
+ catch (Exception ex)
+ {
+ return BadRequest(ex.Message);
+ }
+ }
}
diff --git a/MindBoxApi/Controllers/ItemController.cs b/MindBoxApi/Controllers/ItemController.cs
index 4e1f136..df51dd8 100644
--- a/MindBoxApi/Controllers/ItemController.cs
+++ b/MindBoxApi/Controllers/ItemController.cs
@@ -37,4 +37,21 @@ public class ItemController : ControllerBase
}
}
}
+
+ [HttpPost]
+ public IActionResult PostItem([FromQuery] int? productId, [FromQuery] int? categoryId)
+ {
+ var command = _helper.Connection.CreateCommand();
+ command.CommandText =
+ $"INSERT INTO grocery_store (product_id, category_id) VALUES ({productId}, {categoryId})";
+ try
+ {
+ command.ExecuteNonQuery();
+ return Ok();
+ }
+ catch (Exception ex)
+ {
+ return BadRequest(ex.Message);
+ }
+ }
}
diff --git a/MindBoxApi/Controllers/ProductController.cs b/MindBoxApi/Controllers/ProductController.cs
index f4f3c3f..bcf3964 100644
--- a/MindBoxApi/Controllers/ProductController.cs
+++ b/MindBoxApi/Controllers/ProductController.cs
@@ -32,4 +32,21 @@ public class ProductController : ControllerBase
}
}
}
+
+ [HttpPost]
+ public IActionResult PostProduct([FromBody] Product product)
+ {
+ var command = _helper.Connection.CreateCommand();
+ command.CommandText =
+ $"INSERT INTO products (product_id, product_name) VALUES ({product.Id}, '{product.Name}')";
+ try
+ {
+ command.ExecuteNonQuery();
+ return Ok();
+ }
+ catch (Exception ex)
+ {
+ return BadRequest(ex.Message);
+ }
+ }
}