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