コード例 #1
0
ファイル: Link.cs プロジェクト: vendre21/Brighter
        public static Link Create(TaskListModel taskList, string hostName)
        {
            //we don't need to use taskList to build the self link
            var self = new Link
            {
                Rel  = "self",
                HRef = string.Format("http://{0}/{1}", hostName, "tasks")
            };

            return(self);
        }
コード例 #2
0
ファイル: Link.cs プロジェクト: iancooper/Paramore
        public static Link Create(TaskListModel taskList, string hostName)
        {
            //we don't need to use taskList to build the self link
            var self = new Link
            {
                Rel = "self",
                HRef = string.Format("http://{0}/{1}", hostName, "tasks")
            };

            return self;
        }
コード例 #3
0
 public TaskListModel RetrieveTasks()
 {
     var tasks = _tasksDao.FindAll();
     var taskList = new TaskListModel(tasks, _hostName);
     return taskList;
 }