2018-09-25 15:14:18 +03:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @group manager
|
|
|
|
* @class Items
|
2019-06-19 15:21:58 +03:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher
|
2018-09-25 15:14:18 +03:00
|
|
|
*/
|
|
|
|
var Items = function () {
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function get
|
2019-06-19 15:21:58 +03:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items
|
2018-09-25 15:14:18 +03:00
|
|
|
* @param _id {v2.integer}
|
|
|
|
* @returns {tools.promise(PublisherItem)}
|
|
|
|
*/
|
|
|
|
this.get = function (_id) {
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @public
|
|
|
|
* @function is_exist
|
2019-06-19 15:21:58 +03:00
|
|
|
* @memberof Publishers.PublisherManager.Publisher.Items
|
2018-09-25 15:14:18 +03:00
|
|
|
* @param _id {v2.integer}
|
|
|
|
* @returns {boolean}
|
|
|
|
*/
|
|
|
|
this.is_exist = function (_id) {
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|