Esempio n. 1
0
 public MeetingService(DogWalkerContext dbContext, IMapper mapper, IFileService fileService, IOptions <NotificationSettings> notificationOptions, IOptions <EndpointSettings> endpointOptions)
 {
     _dbContext            = dbContext;
     _mapper               = mapper;
     _fileService          = fileService;
     _notificationSettings = notificationOptions.Value;
     _endpointSettings     = endpointOptions.Value;
 }
 public ProfileService(DogWalkerContext dbContext)
 {
     _dbContext = dbContext;
 }
Esempio n. 3
0
 public PlaceService(DogWalkerContext dbContext)
 {
     _dbContext = dbContext;
 }