| | |
| | | app.factory("HostingField", ['$http', '$log', function ($http, $log) { |
| | | return { |
| | | find : function (conditions) { |
| | | return $http.post("HostingField/find", conditions).then(function (response) { |
| | | return $http.post("hostingField/find", conditions).then(function (response) { |
| | | $log.debug("Hosting 필드 목록 데이터 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | add : function (conditions) { |
| | | return $http.post("hostingField/add", conditions).then(function (response) { |
| | | $log.debug("HostingField 생성 결과 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | modify : function (conditions) { |
| | | return $http.post("hostingField/modify", conditions).then(function (response) { |
| | | $log.debug("HostingField 수정 결과 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | detail : function (conditions) { |
| | | return $http.post("hostingField/detail", conditions).then(function (response) { |
| | | $log.debug("HostingField 상세 : ", response); |
| | | return response; |
| | | }); |
| | | }, |
| | | removes : function (conditions) { |
| | | return $http.post("hostingField/remove", conditions).then(function (response) { |
| | | $log.debug("HostingField 삭제 결과 : ", response); |
| | | return response; |
| | | }); |
| | | } |
| | | |
| | | |
| | | } |
| | | } |
| | | ]); |