示例#1
0
 public CarManager(ICarDal _cardal, ICarImagesDal _carImagesDal, IFileProcess fileProcess)
 {
     //Constructor Injection
     cardal           = _cardal;
     carImagesDal     = _carImagesDal;
     this.fileProcess = fileProcess;
 }
 public CarImageManager(
     ICarImagesDal carImagesDal,
     IFileHelper fileHelper)
 {
     _carImagesDal = carImagesDal;
     _fileHelper   = fileHelper;
 }
示例#3
0
 public CarImagesManager(ICarImagesDal carImageDal)
 {
     _carImagesDal = carImageDal;
 }
 public CarImagesManager(ICarImagesDal carImageDal, ICarService carService)
 {
     _carImageDal = carImageDal;
     _carService  = carService;
 }
示例#5
0
 public CarImageManager(ICarImagesDal _carImagesDal, ICarDal _cardal, IFileProcess fileProcess)
 {
     carImagesDal     = _carImagesDal;
     cardal           = _cardal;
     this.fileProcess = fileProcess;
 }