Esempio n. 1
0
        public InspectionService(IUnitOfWork unitofwork, IRepository <Model.Inspection> repository, IOverSeaService overseaService, IInspectionImageService inspectionimageService)
        {
            this._unitOfWork = unitofwork;
            this._repository = repository;

            this._overseaService         = overseaService;
            this._inspectionimageService = inspectionimageService;
        }
Esempio n. 2
0
 public InspectionImageController(IInspectionImageService inspectionimageService)
 {
     this._inspectionimageService = inspectionimageService;
 }