Exemplo n.º 1
0
 public ResortService(IUnitOfWork unitOfWork,IResortRepository resortRepository)
 {
     this.unitOfWork = unitOfWork;
     this.resortRepository = resortRepository;
 }
Exemplo n.º 2
0
 public ResortController(IResortRepository resortRepo, ILogger <ResortController> logger)
 {
     _resortRepo = resortRepo;
     _logger     = logger;
 }
Exemplo n.º 3
0
 public ResortService(IUnitOfWork unitOfWork, IResortRepository resortRepository)
 {
     this.unitOfWork       = unitOfWork;
     this.resortRepository = resortRepository;
 }
Exemplo n.º 4
0
 public HomeController(IResortRepository resortRepo)
 {
     _resortRepo = resortRepo;
 }