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