using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using BO.BO; namespace BO { public class LocalForSyncList where T:LocalSyncBase { public LocalForSyncList() { WillInsertList=new List(); WillUpdateList = new List(); WillDeleteList = new List(); } public List WillInsertList { get; set; } public List WillUpdateList { get; set; } public List WillDeleteList { get; set; } } }