Ejemplo n.º 1
0
 public ApiaryService(
     ApiaryDiaryDbContext db,
     ILocationInfoService locationInfoService)
 {
     this.db = db;
     this.locationInfoService = locationInfoService;
 }
Ejemplo n.º 2
0
 public LocationsController(
     ILocationInfoService locationInfoService,
     IApiaryService apiaryService,
     UserManager <IdentityUser> userManager)
 {
     this.locationInfoService = locationInfoService;
     this.apiaryService       = apiaryService;
     this.userManager         = userManager;
 }
 public ApiariesController(
     IApiaryService apiaryService,
     IBeehiveService beehiveService,
     ILocationInfoService locationInfoService,
     UserManager <IdentityUser> userManager)
 {
     this.apiaryService       = apiaryService;
     this.beehiveService      = beehiveService;
     this.locationInfoService = locationInfoService;
     this.userManager         = userManager;
 }
Ejemplo n.º 4
0
 public LocationInfosController(ILocationInfoService locationInfoService)
 {
     _locationInfoService = locationInfoService;
 }
Ejemplo n.º 5
0
 public FileOperationConsumerManager(IRabbitMqService rabbitMqServices, IObjectDataConverter objectDataConverter, ILocationInfoService locationInfoService)
 {
     _rabbitMqServices    = rabbitMqServices;
     _objectDataConverter = objectDataConverter;
     _locationInfoService = locationInfoService ?? throw new ArgumentNullException(nameof(locationInfoService));
 }