Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.82 KB | None | 0 0
  1.     /**
  2.      * @param Quote $entity
  3.      * @return int|bool
  4.      */
  5.     public function createQuote(Quote $entity);
  6.  
  7.     /**
  8.      * @param Quote $entity
  9.      * @return bool
  10.      */
  11.     public function updateQuote(Quote $entity) : bool;
  12.  
  13.     /**
  14.      * @param Quote $entity
  15.      * @return bool
  16.      */
  17.     public function deleteQuote(Quote $entity) : bool;
  18.  
  19.     /**
  20.      * @param QuoteParamBag $paramBag
  21.      * @return QuoteCollection
  22.      */
  23.     public function getAllQuote(QuoteParamBag $paramBag) : QuoteCollection;
  24.  
  25.     /**
  26.      * @param QuoteParamBag $paramBag
  27.      * @return Quote|null
  28.      */
  29.     public function getOneQuote(QuoteParamBag $paramBag) : ?Quote;
  30.  
  31.     /**
  32.      * @param QuoteParamBag $paramBag
  33.      * @return bool
  34.      */
  35.     public function isQuoteExists(QuoteParamBag $paramBag) : bool;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement