add show list methods

This commit is contained in:
Aleksey Chichenkov 2018-09-19 13:25:01 +03:00
parent 3478e04a63
commit bbb8ca5fdf
13 changed files with 929 additions and 95 deletions

20
docfiles/modelTypes.js Normal file
View file

@ -0,0 +1,20 @@
/**
* Менеджер тип групп.<br>
*
* @namespace ModelTypes
*/
function ModelTypes() {
/**
* Вернет ссылку на Тип группы.
*
* @public
* @function get
* @param v2.string modelType Адрес модели
* @returns tools.promise
* @memberof ModelTypes
*/
this.get = function (modelType) {
};
}