예제 #1
0
        public async Task <IActionResult> GetBirthdaysByMonth(DateTime selectedDate, int currentUserId)
        {
            var selectedMonthBirthdays = await _employeesService.GetBirthdaysByMonth(selectedDate, currentUserId);

            return(Ok(selectedMonthBirthdays));
        }