コード例 #1
0
 public TestDrivesController(
     IAdminTestDrivesService adminTestDrivesService,
     ICookiesService ookiesService,
     ITestDriveRepository testDriveRepository)
 {
     this.adminTestDrivesService = adminTestDrivesService;
     this.cookiesService         = ookiesService;
     this.testDriveRepository    = testDriveRepository;
 }
コード例 #2
0
 public AdminTestDrivesService(
     ITestDriveRepository testDriveRepository,
     IStatusRepository statusRepository,
     IAdminCommonDeleteService adminDeleteService)
 {
     this.testDriveRepository = testDriveRepository;
     this.statusRepository    = statusRepository;
     this.adminDeleteService  = adminDeleteService;
 }
コード例 #3
0
 public TestDriveService(
     ITestDriveRepository testDriveRepository,
     IStatusRepository statusRepository,
     ICarRepository carRepository,
     UserManager <ApplicationUser> userManager)
 {
     this.testDriveRepository = testDriveRepository;
     this.statusRepository    = statusRepository;
     this.carRepository       = carRepository;
     this.userManager         = userManager;
 }
コード例 #4
0
 public AdminDashboardStatisticsService(
     ITestDriveRepository testDriveRepository,
     IUserRepository userRepository,
     IRoleRepository roleRepository,
     ICarRepository carRepository)
 {
     this.testDriveRepository = testDriveRepository;
     this.userRepository      = userRepository;
     this.roleRepository      = roleRepository;
     this.carRepository       = carRepository;
 }
コード例 #5
0
 public TestDriveService(CrmService crmService, ITestDriveRepository Repository)
 {
     _crmService = crmService;
     _Repository = Repository;
 }
コード例 #6
0
 public TestDriveService(ITestDriveRepository _testdriveRepository, IMapper mapper)
 {
     this.testdriveRepository = _testdriveRepository;
     this._mapper             = mapper;
 }