/** * Created by wisestone on 2018-06-01. */ 'use strict'; define([ 'app' ], function (app) { app.factory("SystemEmail", ['$http', '$log', function ($http, $log) { return { information : function (conditions) { return $http.post("systemEmail/information", conditions).then(function (response) { $log.debug("문의하기 결과 : ", response); return response; }); } } } ]); });