⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memomanager.cs

📁 这个版本(InteliIM Open Kernel Release 2)是目前最新的(首次公开)
💻 CS
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -