public CheckService(DBContext context, ILocationService locationService, IUserInfoManager userInfoManager, IExternalPlatformService externalPlatformService) { _context = context; _locationService = locationService; _userInfoManager = userInfoManager; _externalPlatformService = externalPlatformService; }
public InfectionService(IUserInfoManager userInfoManager, DBContext context, INotificationManager notificationManager, IExternalPlatformService externalPlatformService) { _userInfoManager = userInfoManager; _context = context; _notificationManager = notificationManager; _externalPlatformService = externalPlatformService; }
public LocationService(DBContext context, IExternalPlatformService externalPlatformService) { _context = context; _externalPlatformService = externalPlatformService; }