public bool AddRecipient(string name, Common.EntityType type) { var entities = EntityLookup.Search(name, SearchOptions.ExactMatch | SearchOptions.Online, type); if (entities == null || entities.Length == 0) { return(false); } AddRecipients(entities); return(true); }
public Common.model.IdentifiedObject[] GetEntityByType(Common.EntityType _type) { return(base.Channel.GetEntityByType(_type)); }
public Common.model.IdentifiedObject GetEntityById(Common.EntityType _type, string id) { return(base.Channel.GetEntityById(_type, id)); }