コード例 #1
0
 public IActionResult Get()
 {
     return(Ok(_EmployeeDepartmentService.GetAll().Data));
 }
コード例 #2
0
        public IActionResult GetAll()
        {
            var departments = _employeeDepartmentService.GetAll();

            return(Ok(departments));
        }