Beispiel #1
0
 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;
 }
Beispiel #3
0
 public LocationService(DBContext context, IExternalPlatformService externalPlatformService)
 {
     _context = context;
     _externalPlatformService = externalPlatformService;
 }