/** * Created by wisestone on 2018-05-29. */ 'use strict'; define([ 'app' ], function (app) { app.factory("Guide", ['$http', '$log', function ($http, $log) { return { find : function (conditions) { return $http.post("guide/find", conditions).then(function (response) { $log.debug("가이드 목록 데이터 : ", response); return response; }); }, add : function (conditions) { return $http.post("guide/add", conditions).then(function (response) { $log.debug("가이드 생성 결과 : ", response); return response; }); }, modify : function (conditions) { return $http.post("guide/modify", conditions).then(function (response) { $log.debug("가이드 수정 결과 : ", response); return response; }); }, activation : function (conditions) { return $http.post("guide/activation", conditions).then(function (response) { $log.debug("가이드 상태 변경 결과 : ", response); return response; }); }, detail : function (conditions) { return $http.post("guide/detail", conditions).then(function (response) { $log.debug("가이드 상세 데이터 : ", response); return response; }); }, remove : function (conditions) { return $http.post("guide/remove", conditions).then(function (response) { $log.debug("가이드 삭제 결과 : ", response); return response; }); } } } ]); });