37 lines
725 B
C#
37 lines
725 B
C#
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
|
|
} |