Ejemplo n.º 1
0
 public CalendarController(ICalendarAppService calendarAppService,
                           UserManager <AppUser> userManager,
                           IHttpContextAccessor httpContextAccessor,
                           IMapper mapper, IOptions <AppSettings> options)
 {
     _calendarAppService  = calendarAppService;
     _userManager         = userManager;
     _httpContextAccessor = httpContextAccessor;
     _mapper   = mapper;
     _settings = options.Value;
 }
 public CalendarsController(ICalendarAppService calendarAppService)
 {
     _calendarAppService = calendarAppService;
 }