Advertisement
Guest User

Untitled

a guest
Mar 29th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. interface AssetManager {
  2.    
  3. public function __construct(PDO $pdo);
  4. public function getAsset($assetType,$assetId);
  5. public function removeAsset($assetType,$assetId);
  6. public function addAsset($assetType);
  7. public function getAll($assetType);
  8. public function getCount($assetType);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement