Files
DMS/DMS.Infrastructure/Services/MenuService.cs

15 lines
332 B
C#
Raw Normal View History

using AutoMapper;
using DMS.Core.Models;
using DMS.Infrastructure.Entities;
2025-07-19 22:29:50 +08:00
using DMS.Infrastructure.Repositories;
namespace DMS.Infrastructure.Services
{
2025-07-21 22:02:42 +08:00
public class MenuService : BaseService<MenuBean, MenuRepository>
{
2025-07-21 22:02:42 +08:00
public MenuService(MenuRepository repository) : base(repository)
{
}
}
}