using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Jvedio.Core.SimpleORM.Wrapper { public class UpdateWrapper : SelectWrapper { public Dictionary UpdateDict { get; set; } public UpdateWrapper() { UpdateDict = new Dictionary(); } public IWrapper update(string field, object value) { UpdateDict.Add(field, value); return this; } } }