Guest User

Untitled

a guest
Oct 18th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. class PrestationTableVeterinary(grok.Adapter):
  2. grok.context(IVacationVeterinary)
  3. grok.provides(IPrestationTableInterface)
  4. grok.implements(IPrestationTable, IPrestationTableVeterinary)
  5.  
  6.  
  7. class PrestationTableAdminSante(grok.Adapter):
  8. grok.context(IVacationAdminSante)
  9. grok.provides(IPrestationTableInterface)
  10. grok.implements(IPrestationTable, IPrestationTableAdminSante)
  11.  
  12.  
  13. class PrestationTableUpc(grok.Adapter):
  14. grok.context(IVacationUpc)
  15. grok.provides(IPrestationTableInterface)
  16. grok.implements(IPrestationTable, IPrestationTableUpc)
Add Comment
Please, Sign In to add comment