Adding code of OpenSAP week2 unit 1 demo

This commit is contained in:
Harini Gunabalan
2020-03-21 23:31:43 +01:00
parent 06755978b2
commit fa187be617
94 changed files with 3270 additions and 2614 deletions

View File

@@ -1,7 +1,7 @@
using { sap.capire.bookshop as my } from '../db/schema';
service AdminService @(_requires:'authenticated-user') {
service AdminService @(_requires:'admin') {
entity Books as projection on my.Books;
entity Movies as projection on my.Movies;
entity Authors as projection on my.Authors;
entity Orders as select from my.Orders;
}
}