using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; namespace Bwp.ABCClient2.Market { public abstract class ClientBase { protected string NewRequestIDByTime() { return DateTime.Now.Ticks.GetHashCode().ToString().Replace("-", "1"); } } }