52 lines
1.1 KiB
C#
52 lines
1.1 KiB
C#
using Core.Models.Eft.Common;
|
|
using Core.Models.Eft.ItemEvent;
|
|
|
|
namespace Core.Controllers;
|
|
|
|
public class NoteController
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="pmcData"></param>
|
|
/// <param name="body"></param>
|
|
/// <param name="sessionId"></param>
|
|
/// <returns></returns>
|
|
public ItemEventRouterResponse AddNote(
|
|
PmcData pmcData,
|
|
NoteActionBody body,
|
|
string sessionId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="pmcData"></param>
|
|
/// <param name="body"></param>
|
|
/// <param name="sessionId"></param>
|
|
/// <returns></returns>
|
|
public ItemEventRouterResponse EditNote(
|
|
PmcData pmcData,
|
|
NoteActionBody body,
|
|
string sessionId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <param name="pmcData"></param>
|
|
/// <param name="body"></param>
|
|
/// <param name="sessionId"></param>
|
|
/// <returns></returns>
|
|
public ItemEventRouterResponse DeleteNote(
|
|
PmcData pmcData,
|
|
NoteActionBody body,
|
|
string sessionId)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |