using WIDESEAWCS_Core.BaseRepository; using WIDESEAWCS_Core.BaseServices; using WIDESEAWCS_IBoxingInfoService; using WIDESEAWCS_Model.Models; namespace WIDESEAWCS_BoxingInfoService { public partial class BoxingDetailService : ServiceBase>, IBoxingDetailService { public IRepository Repository => BaseDal; public BoxingDetailService(IRepository BaseDal) : base(BaseDal) { } } }