using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; namespace Neo.Legitimate.NLTISWebService.Data { internal interface IEntity { string this[string name] { get; set; } int StatusID { get; } void Save(string path); void Verify(); void Create(SqlCommand command); void Update(SqlCommand command); } }