public async Task <ActionResult <IEnumerable <Holiday> > > GetDateWiseAllHoliday(/*int branchId, int year*/)
        {
            var notices = await _holidayRepository.GetDateWiseAllHoliday(2020, 1, 01);

            if (notices.Count() != 0)
            {
                return(notices.ToList());
            }
            return(NotFound());
        }