示例#1
0
 /// <summary>
 /// Constructor for Home Controller
 /// </summary>
 public HomeController(
     IBillingCalendarService calendarService,
     IConfiguration configuration,
     ISendGridService sendGridService
     )
 {
     _calendarService = calendarService;
     _configuration   = configuration;
     _sendGridService = sendGridService;
     configuration.GetSection("AppSettings").Bind(_webConfiguration);
 }
示例#2
0
 public BillingCalendarController(IBillingCalendarService calendarService)
 {
     _calendarService = calendarService;
 }