/*
 * Copyright 2024 youngmonkeys.org
 * 
 * Licensed under the ezyplatform, Version 1.0.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     https://youngmonkeys.org/licenses/ezyplatform-1.0.0.txt
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
*/

package ${basePackageName}.${moduleTypeLowercase}.service;

import com.tvd12.ezyhttp.server.core.annotation.Service;
import ${basePackageName}.${moduleTypeLowercase}.converter.${moduleType}${moduleName}EntityToModelConverter;
import ${basePackageName}.${moduleTypeLowercase}.pagination.${moduleType}${entityClassName}PaginationParameterConverter;
import ${basePackageName}.${moduleTypeLowercase}.repo.${moduleType}Pagination${entityClassName}Repository;
import ${basePackageName}.service.Pagination${entityClassName}Service;

@Service
public class ${moduleType}Pagination${entityClassName}Service
    extends Pagination${entityClassName}Service {

    public ${moduleType}Pagination${entityClassName}Service(
        ${moduleType}Pagination${entityClassName}Repository repository,
        ${moduleType}${moduleName}EntityToModelConverter entityToModelConverter,
        ${moduleType}${entityClassName}PaginationParameterConverter paginationParameterConverter
    ) {
        super(
            repository,
            entityToModelConverter,
            paginationParameterConverter
        );
    }
}
