IDoAction.cs 328 B

1234567891011121314
  1. using Microsoft.EntityFrameworkCore;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace wispro.sp.share
  8. {
  9. public interface IDoAppealObject
  10. {
  11. public void DoAppeal(AppealObject appeal, int appealRecordId, DbContext spContext);
  12. }
  13. }