public void Insert(string TypeName, string Description) { DDSearchType item = new DDSearchType(); item.TypeName = TypeName; item.Description = Description; item.Save(UserName); }
public void Update(int TypeID, string TypeName, string Description) { DDSearchType item = new DDSearchType(); item.MarkOld(); item.IsLoaded = true; item.TypeID = TypeID; item.TypeName = TypeName; item.Description = Description; item.Save(UserName); }
public bool Destroy(object TypeID) { return(DDSearchType.Destroy(TypeID) == 1); }
public bool Delete(object TypeID) { return(DDSearchType.Delete(TypeID) == 1); }