using Core.Models.Eft.Common;
namespace Core.Controllers;
public class NoteController
{
///
///
///
///
///
///
///
public ItemEventRouterResponse AddNote(
PmcData pmcData,
NoteActionBody body,
string sessionId)
{
throw new NotImplementedException();
}
///
///
///
///
///
///
///
public ItemEventRouterResponse EditNote(
PmcData pmcData,
NoteActionBody body,
string sessionId)
{
throw new NotImplementedException();
}
///
///
///
///
///
///
///
public ItemEventRouterResponse DeleteNote(
PmcData pmcData,
NoteActionBody body,
string sessionId)
{
throw new NotImplementedException();
}
}