/** * Created by wisestone on 2018-06-01. */ 'use strict'; define([ 'app' ], function (app) { app.factory("Priority", ['$http', '$log', function ($http, $log) { return { find : function (conditions) { return $http.post("priority/find", conditions).then(function (response) { $log.debug("우선순위 목록 데이터 : ", response); return response; }); } } } ]); });