OftenContactService.Delete.cs 473 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace GxPress.Service.Implement.OftenContact
  6. {
  7. public partial class OftenContactService
  8. {
  9. /// <summary>
  10. /// 删除成功
  11. /// </summary>
  12. /// <param name="id"></param>
  13. /// <returns></returns>
  14. public async Task<bool> DeleteAsync(int id)
  15. {
  16. return await _repository.DeleteAsync(id);
  17. }
  18. }
  19. }