initialize mtx

This commit is contained in:
Wolfgang Koch
2021-04-29 10:10:09 +02:00
parent 2536f36596
commit 594043e55c
15 changed files with 5582 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using {sap.capire.bookshop as bookshop } from '../../bookshop/db/schema';
using {sap.capire.orders as orders } from '../../orders/db/schema';
service MultitenancyService {
entity Books as projection on bookshop.Books;
entity Orders as projection on orders.Orders;
entity Orders_Items as projection on orders.Orders_Items;
}
using AdminService from '../../bookshop/srv/admin-service';
using CatalogService from '../../bookshop/srv/cat-service';
annotate AdminService with @restrict : false;
annotate CatalogService with @restrict : false;