public ProfileCardController(IProfileCardBusinessService profileCardBusinessService)
 {
     this.profileCardBusinessService = profileCardBusinessService;
 }
 public ProfileCardController(IProfileCardBusinessService profileCardBusinessService, ILocationBusinessService locationService)
 {
     this.profileCardBusinessService = profileCardBusinessService;
     this.locationService            = locationService;
 }