public VoltageCommand(ICarService carService, int carId, float voltage, DateTime time) { _carService = carService; _carId = carId; _voltage = voltage; _time = time; }
public SmsOutCommand(ICarService carService, int carId, string text, DateTime time) { _carService = carService; _carId = carId; _text = text; _time = time; }
public Temp1Command(ICarService carService, int carId, float temperature, DateTime time) { _carService = carService; _carId = carId; _temperature = temperature; _time = time; }
public SpeedCommand(ICarService carService, int carId, int speed, DateTime time) { _carService = carService; _carId = carId; _speed = speed; _time = time; }
public GpsCommand(ICarService carService, int carId, double latitude, double longitude, DateTime time) { _carService = carService; _carId = carId; _latitude = latitude; _longitude = longitude; _time = time; }
public GSensorCommand(ICarService carService, int carId, int x, int y, int z, DateTime time) { _carService = carService; _carId = carId; _x = x; _y = y; _z = z; _time = time; }
public CarProtoServer(ICarService carService) { _carService = carService; _tcpServer = new TcpServer(255); var ipEndPoint = new IPEndPoint(IPAddress.Any, 4999); _tcpServer.Start(ipEndPoint); _tcpServer.ClientConnected += ClientConnected; _tcpServer.ClientDisonnected += ClientDisconnected; }
public CarsController( ICarService carService ) { CarService = carService; }
public CarsController(EFContext context, ICarService carService, IMapper mapper) { _context = context; _carService = carService; _mapper = mapper; }
public CarsApiController(ICarService carService) { _carService = carService; }
public CarsController(ICarService cars, IPartService parts) { this.cars = cars; this.parts = parts; }
public CarsController(ICarService CarService) { _CarService = CarService; }
public CarsController(ICarService carService) { _carService = carService; }
public DeleteCarModel(ICarService service) { this.carService = service; }
public ShowLatestCarsCommand(CommandContext context, ICarService service, IValidator validation, IMappingService mapping) : base(context, validation) { this.service = service; this.mapping = mapping; }
public MechanicService(ICarService carService) { _carService = carService; _url = _carService.Client.BaseAddress + "users/Mechanic/"; }
public CarsController(ICarService carService, IColorService colorService, IBrandService brandService) { _carService = carService; _colorService = colorService; _brandService = brandService; }
public CarsController(ICarService service) { this.service = service ?? throw new ArgumentNullException($"{nameof(service)} cannot be null."); }
public CarController(ICarService carService, ICarLogger logger) { _carService = carService; _logger = logger; }
public CommunicationMiddleware(RequestDelegate next, ICarService carService) { _next = next; _carService = carService; }
public CarsController(ILogger <CarsController> logger, ICarService carService) { _logger = logger; _carService = carService; }
public ModelsController(ICarService cars, IUserService users, UserManager <User> userManager) { this.cars = cars; this.users = users; this.userManager = userManager; }
public CarsController(ICarService carsService) { this.cars = carsService; }
public CarsController(ICarService cars) { this.cars = cars; }
public CarsController(ICarService carService) //soyuta bağımlılık var { _carService = carService; }
public HireStoryApiController(ICarService service) { _service = service; }
public RentalManager(IRentalDal rentalDal, ICarService carService, ICustomerService customerService) { _rentalDal = rentalDal; _carService = carService; _customerService = customerService; }
public RentalManager(IRentalDal rentalDal, ICarService carService) { _carService = carService; }
public CarController(ICarService carService) { this.carService = carService; }
public CarsController(ICarService carService, ICarImageService carImageService) { _carService = carService; _carImageService = carImageService; }
public DashboardController(ICarService carService) { _carService = carService; }
public CarImageManager(ICarImageDal carImageDal, ICarService carService) { _carImageDal = carImageDal; _carService = carService; }
public CarController(ICarService service) { _service = service; }
public FindeksManager(ICustomerService customerService, ICarService carService) { _customerService = customerService; _carService = carService; }
public RentalManager(IRentalDal rentalDal, IFindexService findexService, ICarService carService) { _rentalDal = rentalDal; _findexService = findexService; _carService = carService; }
public BookingService(DbContext context, ICarService carService) : base(context) { _carService = carService; }
public InputCommandFactory(ICarService carService) { CarService = carService; }
public CarController(ICarService service) { this.service = service; }
public TextAuthProto(ITcpConnection connection, ICommandFactory commandFactory, int id, ICarService carService1) : base(connection, commandFactory, id) { _carService = carService1; }
public HomeController(ICarService carService) { _carService = carService; }
public FormCar(ICarService car) { InitializeComponent(); this.car = car; }
public RentalManager(IRentalDal rentalDal, ICarService iCarService, ICustomerService iCustomerService) { _rentalDal = rentalDal; _iCarService = iCarService; _iCustomerService = iCustomerService; }
public CarsController(ICarService carService, ILog logger) { this.carService = carService; this.logger = logger; }
public CarsController(ICarService carManager) { _carService = carManager; }
public CarrosController(ICarService<Car> carService) { _carService = carService; }
public CarController(IMapper mapper, ICarService carService, IFileService fileService) { this.mapper = mapper; this.carService = carService; this.fileService = fileService; }