using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServerBase; public abstract class IFormatter { public abstract string toLogString(BusinessLog log); }//IFormatter