コード例 #1
0
ファイル: EmployeesController.cs プロジェクト: MatZil/Testing
        public async Task <IActionResult> GetBirthdaysByMonth(DateTime selectedDate, int currentUserId)
        {
            var selectedMonthBirthdays = await _employeesService.GetBirthdaysByMonth(selectedDate, currentUserId);

            return(Ok(selectedMonthBirthdays));
        }