Пример #1
0
 public ActionResult AddNewEmployee([FromBody] EmployeeModel model)
 {
     _service.CreateNewEmployee(model);
     return(Ok());
 }