X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FpersUserAppSort%2FEpPersUserAppSortService.java;fp=portal-BE%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fportal%2Fservice%2FpersUserAppSort%2FEpPersUserAppSortService.java;h=05d32e6df720752acf351a3d0ad6c5a946e09ceb;hb=9a391d0c4cca00a1cd448a6ce3fa755d42c8fd5d;hp=0000000000000000000000000000000000000000;hpb=2b436dba4b7c12e8c97f040753d0d5044d580b8d;p=portal.git diff --git a/portal-BE/src/main/java/org/onap/portal/service/persUserAppSort/EpPersUserAppSortService.java b/portal-BE/src/main/java/org/onap/portal/service/persUserAppSort/EpPersUserAppSortService.java new file mode 100644 index 00000000..05d32e6d --- /dev/null +++ b/portal-BE/src/main/java/org/onap/portal/service/persUserAppSort/EpPersUserAppSortService.java @@ -0,0 +1,20 @@ +package org.onap.portal.service.persUserAppSort; + +import org.onap.portal.domain.db.ep.EpPersUserAppSort; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +@Service +public class EpPersUserAppSortService { + + private final EpPersUserAppSortDao epPersUserAppSortDao; + + @Autowired + public EpPersUserAppSortService(EpPersUserAppSortDao epPersUserAppSortDao) { + this.epPersUserAppSortDao = epPersUserAppSortDao; + } + + public EpPersUserAppSort save(EpPersUserAppSort appSort) { + return epPersUserAppSortDao.save(appSort); + } +}