public ContactUsInfoController(IContactUsInfoService contactUsService)
 {
     _contactUsInfoService = contactUsService;
 }
Esempio n. 2
0
 public HomeController(ILogger <HomeController> logger, IContactUsInfoService ContactUsInfoService, IAboutUsService AboutUsService)
 {
     _logger = logger;
     _contactUsInfoService = ContactUsInfoService;
     _aboutUsService       = AboutUsService;
 }