示例#1
0
 public ProvinceCityProfilesController(IProfileService profileService, IVeterinaryProfileService veterinaryProfileService,
                                       IPetProfileService petProfileService, IMapper mapper)
 {
     _profileService           = profileService;
     _veterinaryProfileService = veterinaryProfileService;
     _petProfileService        = petProfileService;
     _mapper = mapper;
 }
 public PetsController(IPetProfileService petProfileService, IMapper mapper)
 {
     _petProfileService = petProfileService;
     _mapper            = mapper;
 }
示例#3
0
 public PetProfileController(IPetProfileService petProfile)
 {
     this._petProfile = petProfile;
 }