Beispiel #1
0
 public TopRatedModel(IConfiguration configuration,
                      IIslandDataService islandData,
                      ILogger <TopRatedModel> logger)
 {
     this.configuration = configuration;
     this.islandData    = islandData;
     this.logger        = logger;
 }
Beispiel #2
0
 public TopRatedCardModel(IConfiguration configuration, IIslandDataService islandData)
 {
     this.configuration = configuration;
     this.islandData    = islandData;
 }
Beispiel #3
0
 public DetailModel(IIslandDataService islandData)
 {
     this.islandData = islandData;
 }
Beispiel #4
0
 public DeleteModel(IIslandDataService islandData)
 {
     this.islandDataService = islandData;
 }
Beispiel #5
0
 public EditModel(IIslandDataService islandData, IHtmlHelper htmlHelper)
 {
     this.islandData = islandData;
     this.htmlHelper = htmlHelper;
 }
Beispiel #6
0
 public IslandCountViewComponent(IIslandDataService islandDataService)
 {
     this.islandDataService = islandDataService;
 }