12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Threading.Tasks;
- namespace GxPress.Service.Implement.OftenContact
- {
- public partial class OftenContactService
- {
- /// <summary>
- /// 删除成功
- /// </summary>
- /// <param name="id"></param>
- /// <returns></returns>
- public async Task<bool> DeleteAsync(int id)
- {
- return await _repository.DeleteAsync(id);
- }
- }
- }
|