public SearchController(Contracts.ISocialService socialservice, Contracts.IProfileService profileService,
                         ILogger <SocialController> socialLogger, ILogger <ProfileController> profileLogger)
 {
     _socialLogger   = socialLogger;
     _socialLogger   = socialLogger;
     _socialService  = socialservice;
     _profileService = profileService;
 }
Exemple #2
0
 public ProfileController(ILogger <ProfileController> logger, Contracts.IProfileService service)
 {
     _logger  = logger;
     _service = service;
 }