AdminRiderLevelService.java 439 Bytes
package com.diligrp.rider.service;

import com.diligrp.rider.dto.AdminRiderLevelSaveDTO;
import com.diligrp.rider.entity.RiderLevel;

import java.util.List;

public interface AdminRiderLevelService {
    List<RiderLevel> list(Long cityId);

    void add(AdminRiderLevelSaveDTO dto, Long cityId);

    void edit(AdminRiderLevelSaveDTO dto, Long cityId);

    void setDefault(Long id, Long cityId);

    void delete(Long id, Long cityId);
}