public VehicalsController( IMapper mapper, IVehicalRepository repository, IUnitOfWork unitOfWork ) { this.repository = repository; this.unitOfWork = unitOfWork; this.mapper = mapper; }
public VehicalController(IUnitOfWork unitOfWork, IMapper mapper, IVehicalRepository vehicalRepository) { this.unitOfWork = unitOfWork; this.mapper = mapper; this.vehicalRepository = vehicalRepository; }