using Microsoft.AspNetCore.Mvc; using WIDESEA_DTO.Basic; namespace WIDESEA_IStorageBasicService; public interface IBoxingInfoService : IService { Task AddGroupPlateAsync(GroupPlate groupPlate); Task DeleteGroupPlateAsync(GroupPlate groupPlate); }