protected ICarsFilterTypesService GetService(ApplicationDbContext dbContext)
        {
            var carModelTypeService = new CarModelTypeService();
            var carYearService      = new CarYearService();
            var carSeriesService    = new CarSeriesService();
            var carPriceService     = this.GetMockedCarPriceService();
            var service             = new CarsFilterTypesService(
                carModelTypeService,
                carYearService,
                carSeriesService,
                carPriceService);

            return(service);
        }
Ejemplo n.º 2
0
        public IHomeService GetService(ApplicationDbContext dbContext)
        {
            var carInventoriesService = new CarInventoriesService();
            var carYearService        = new CarYearService();
            var carModelTypeService   = new CarModelTypeService();
            var mockedCarPriceService = new Mock <ICarPriceService>();

            CommonMockServicesMethods.SetupCarPriceService(mockedCarPriceService);
            var service = new HomeService(
                carInventoriesService,
                carYearService,
                carModelTypeService,
                mockedCarPriceService.Object);

            return(service);
        }
Ejemplo n.º 3
0
        public ICarYearService GetService()
        {
            var service = new CarYearService();

            return(service);
        }