equal
deleted
inserted
replaced
14 * limitations under the License. |
14 * limitations under the License. |
15 */ |
15 */ |
16 package fis.top.model |
16 package fis.top.model |
17 |
17 |
18 import fis.base.model.BaseSchema |
18 import fis.base.model.BaseSchema |
|
19 import fis.cl.model.CodeListSchema |
19 import fis.crm.model.CrmSchema |
20 import fis.crm.model.CrmSchema |
20 import fis.geo.model.GeoSchema |
21 import fis.geo.model.GeoSchema |
21 |
22 |
22 trait FisDbSchema extends BaseSchema |
23 trait FisDbSchema extends BaseSchema |
|
24 with CodeListSchema |
23 with CrmSchema |
25 with CrmSchema |
24 with GeoSchema |
26 with GeoSchema |
25 |
27 |
26 object FisDbSchema extends FisDbSchema |
28 object FisDbSchema extends FisDbSchema |
27 |
29 |