public DrivingSchoolCarBusinessService(IDrivingSchoolCarDataService dataService, IMapper mapper)
 {
     _dataService = dataService;
     _mapper      = mapper;
 }
 public DrivingSchoolBusinessService(IMapper mapper, IDrivingSchoolCarDataService drivingSchoolCarDataService)
 {
     _mapper = mapper;
     _drivingSchoolCarDataService = drivingSchoolCarDataService;
 }