public ContactModel(ILogger <ContactModel> logger, JsonFileContactService contactService, ILogger <ProfileModel> baseLogger, JsonFileProfileService profilService) : base(baseLogger, profilService)
 {
     _logger         = logger;
     _contactService = contactService;
 }
Example #2
0
 public ContactController(JsonFileContactService contactService)
 {
     _contactService = contactService;
 }