using System; using System.Collections.Generic; using System.Text; using System.Threading.Tasks; namespace GxPress.Service.Implement.OftenContact { public partial class OftenContactService { /// /// 删除成功 /// /// /// public async Task DeleteAsync(int id) { return await _repository.DeleteAsync(id); } } }