import request from '../../../utils/request'; import Config from '../../../utils/config'; export const getFciGroup = data => { return request( { url: Config.apis.breed.getFciGroup, method: 'GET', data, }, 'nothing', ); }; export const getFciSectionByGroupId = data => { return request( { url: `${Config.apis.breed.getFciSectionByGroupId}/${data.groupNo}`, method: 'GET', }, 'nothing', ); }; export const getFciDogBySectionId = data => { return request( { url: `${Config.apis.breed.getFciDogBySectionId}/${data.gsNo}`, method: 'GET', }, 'nothing', ); }; export const getFciDogAll = data => { return request( { url: Config.apis.breed.getFciDogAll, method: 'GET', data, }, 'nothing', ); }; export const getFciDogById = data => { return request( { url: `${Config.apis.breed.getFciDogById}/${data.typeNo}`, method: 'GET', }, 'nothing', ); };