작성
·
127
0
예를 들어
async function deleteInterestByGroupSeq(stockInterestGroupSeq) {
await StockInterest.destroy({
where: { STOCK_INTEREST_GROUP_SEQ: stockInterestGroupSeq },
});
}
async function deleteInterestBySeq(stockInterestSeq) {
await StockInterest.destroy({
where: { STOCK_INTEREST_SEQ: stockInterestSeq },
});
}
이렇게 비슷한 2개가 있는 경우 파라미터로 분기치는 방식으로 통합해서 사용하는게 유용한가요?
아니면 저런식으로 나눠서 사용하는게 나은 방식인가요?