Ejemplo n.º 1
0
        public IActionResult GetTaskListForEmployee(int id, string token)
        {
            var userInformationDb = _service.GetAllInformationAboutTaskListForEmployee(id);

            return(Ok(ResponseManager.GenerateResponse(null, (int)MessageType.Ok, userInformationDb)));
        }