Exemplo n.º 1
0
 /// <summary>
 /// Provides APIs to handle requests related to business user profiles.
 /// </summary>
 /// <param name="profileBusinessService"></param>
 public ProfileBusinessController(IProfileBusinessService profileBusinessService)
 {
     _profileBusinessService = profileBusinessService;
 }
Exemplo n.º 2
0
 public ProfileController(IProfileBusinessService profileBusinessService, IProfileControllerMapper profileControllerMapper)
 {
     this.profileBusinessService  = profileBusinessService;
     this.profileControllerMapper = profileControllerMapper;
 }