using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wispro.sp.share { public interface IDoAppealObject { public void DoAppeal(AppealObject appeal, int appealRecordId, DbContext spContext); } }