memomanager.cs

来自「这个版本(InteliIM Open Kernel Release 2)是目前最」· CS 代码 · 共 59 行

CS
59
字号
#region Using Directives

using System;
using System.IO;
using System.Windows.Forms;
using Org.InteliIM.Configurations.Services;

#endregion

namespace Org.InteliIM.Applications.MiniTools.Memos
{
	/// <summary>
	/// The manager for memos.
	/// </summary>
	public class MemoManager: IManager
	{
		/// <summary>
		/// Initializes a new instance of the MemoManager class.
		/// </summary>
		public MemoManager()
		{
        }

		/// <summary>
		/// Gets the memo for the specified user id and date.
		/// </summary>
		/// <param name="userId"></param>
		/// <param name="date"></param>
		/// <returns></returns>
        public Memo GetMemo(string userId, DateTime date)
        {
            return null;
        }

		/// <summary>
		/// Sets the memo with the specified user id and date.
		/// </summary>
		/// <param name="userId"></param>
		/// <param name="date"></param>
		/// <param name="memo"></param>
        public void SetMemo(string userId, DateTime date, Memo memo)
        {
        }

        public void Initialize()
        {
        }

        public void Start()
        {
        }

        public void Stop()
        {
        }
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?