refactor import usage. refactor invoices implementation
This commit is contained in:
committed by
Daniel Hutzel
parent
bcfce87276
commit
3cf02cb567
9
media-store/srv/manage-store-service.cds
Normal file
9
media-store/srv/manage-store-service.cds
Normal file
@@ -0,0 +1,9 @@
|
||||
using {sap.capire.media.store as my} from '../db/schema';
|
||||
|
||||
@(requires : 'employee')
|
||||
service ManageStore {
|
||||
entity Tracks as projection on my.Tracks;
|
||||
action addTrack(name : String(25), albumTitle : String(255), genreName : String(255), composer : String(255));
|
||||
entity Albums as projection on my.Albums;
|
||||
entity Genres as projection on my.Genres;
|
||||
}
|
||||
Reference in New Issue
Block a user