public IActionResult Get()
 {
     return(Ok(_EmployeeDepartmentService.GetAll().Data));
 }
Ejemplo n.º 2
0
        public IActionResult GetAll()
        {
            var departments = _employeeDepartmentService.GetAll();

            return(Ok(departments));
        }