-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathFaqGroupRepositoryInterface.php
executable file
·77 lines (71 loc) · 2.14 KB
/
FaqGroupRepositoryInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?php
/**
* MagePrince
*
* NOTICE OF LICENSE
*
* This source file is subject to the mageprince.com license that is
* available through the world-wide-web at this URL:
* https://mageprince.com/end-user-license-agreement
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this extension to newer
* version in the future.
*
* @category MagePrince
* @package Mageprince_Faq
* @copyright Copyright (c) MagePrince (https://mageprince.com/)
* @license https://mageprince.com/end-user-license-agreement
*/
namespace Mageprince\Faq\Api;
interface FaqGroupRepositoryInterface
{
/**
* Save FaqGroup
*
* @param \Mageprince\Faq\Api\Data\FaqGroupInterface $faqGroup
* @return \Mageprince\Faq\Api\Data\FaqGroupInterface
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function save(
\Mageprince\Faq\Api\Data\FaqGroupInterface $faqGroup
);
/**
* Retrieve FaqGroup
*
* @param int $faqGroupId
* @return \Mageprince\Faq\Api\Data\FaqGroupInterface
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getById($faqGroupId);
/**
* Retrieve FaqGroup matching the specified criteria.
*
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
* @return \Mageprince\Faq\Api\Data\FaqGroupSearchResultsInterface
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function getList(
\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
);
/**
* Delete FaqGroup
*
* @param \Mageprince\Faq\Api\Data\FaqGroupInterface $faqGroup
* @return bool true on success
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function delete(
\Mageprince\Faq\Api\Data\FaqGroupInterface $faqGroup
);
/**
* Delete FaqGroup by ID
*
* @param int $faqGroupId
* @return bool true on success
* @throws \Magento\Framework\Exception\NoSuchEntityException
* @throws \Magento\Framework\Exception\LocalizedException
*/
public function deleteById($faqGroupId);
}