public UserCalendersController(IUserCalenderService calenderService)
 {
     _calenderService = calenderService;
 }
 public HomeController(IHttpContextAccessor httpContextAccessor, IUserCalenderService calenderService)
 {
     _httpContextAccessor = httpContextAccessor;
     _calenderService     = calenderService;
 }