IAttachService.cs 266 B

1234567891011
  1. using System.Threading.Tasks;
  2. namespace GxPress.Service.Interface.Attach
  3. {
  4. public interface IAttachService : IService
  5. {
  6. Task<int> InsertAsync(Entity.tede2.Attach.Attach note);
  7. Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note);
  8. }
  9. }