Beispiel #1
0
 public ConnectController(IDepartmentProfileService departmentProfileService, IDepartmentsService departmentsService, IAddressService addressService,
                          IGeoLocationProvider geoLocationProvider, IOptions <AppOptions> appOptionsAccessor)
 {
     _departmentProfileService = departmentProfileService;
     _departmentsService       = departmentsService;
     _addressService           = addressService;
     _geoLocationProvider      = geoLocationProvider;
     _appOptionsAccessor       = appOptionsAccessor;
 }
Beispiel #2
0
 public ImageService(IUserProfileService userProfileService, IDepartmentProfileService departmentProfileService)
 {
     _userProfileService       = userProfileService;
     _departmentProfileService = departmentProfileService;
 }
Beispiel #3
0
 /// <summary>
 /// Operations to perform against the connect sub-system
 /// </summary>
 public ConnectController(IDepartmentsService departmentsService, IDepartmentProfileService departmentProfileService)
 {
     _departmentsService       = departmentsService;
     _departmentProfileService = departmentProfileService;
 }