EchoTex_Payroll/HRM.BO/Basic/Bookmark.cs

37 lines
725 B
C#
Raw Normal View History

2024-10-14 10:01:49 +06:00
using Ease.Core.Model;
using System;
using System.Collections.Generic;
using System.Data;
namespace HRM.BO
{
#region Bookmark
public class Bookmark : BasicBaseObject
{
#region Properties
public int UserID { get; set; }
public int? EmployeeId { get; set; }
public string Link { get; set; }
public string MenuCode { get; set; }
public string Description { get; set; }
#endregion
}
#endregion
#region IBookmark Service
public interface IBookmarkService
{
List<Bookmark> Get(int UserID);
int Save(Bookmark item);
void Delete(int id);
void Delete(int userID, string menuKey);
}
#endregion
}