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-19 22:29:50 +08:00
|
|
|
public class MenuService : BaseService<MenuBean, DbMenu, MenuRepository>
|
2025-07-19 14:36:34 +08:00
|
|
|
{
|
2025-07-19 22:29:50 +08:00
|
|
|
public MenuService(IMapper mapper, MenuRepository repository) : base(mapper, repository)
|
2025-07-19 14:36:34 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|