Esempio n. 1
0
 public StarShipsController(IStarShipService starShipService)
 {
     _starShipService = starShipService;
 }
 public StarShipController(IStarShipService starShipService,
                           IUnitOfWork unitOfWork)
 {
     _starShipService = starShipService;
     _unitOfWork      = unitOfWork;
 }