Esempio n. 1
0
 public PlaneTypesController(
     IPlaneTypeService planeTypeService,
     IValidator <PlaneTypeDTO> planeTypeModelValidator
     )
 {
     _planeTypeService        = planeTypeService;
     _planeTypeModelValidator = planeTypeModelValidator;
 }
Esempio n. 2
0
 public PlaneService(
     IUnitOfWork unitOfWork,
     IPlaneTypeService planeTypeService
     )
     : base(unitOfWork)
 {
     _planeTypeService = planeTypeService;
 }
 public PlaneTypesController(IPlaneTypeService serv)
 {
     planeTypeService = serv;
 }
 public PlaneTypeController(IPlaneTypeService planeTypeService)
 {
     this.planeTypeService = planeTypeService;
 }
Esempio n. 5
0
 public PlaneTypesController(IPlaneTypeService planeTypeService)
 {
     _planeTypeService = planeTypeService;
 }
Esempio n. 6
0
 public PlaneTypeController(IPlaneTypeService service)
 {
     _service = service;
 }