1234567891011121314151617 |
-
- namespace LJLib.Net.SPI.Com
- {
- public interface ILJRequest
- {
- string GetApiName();
- }
- public abstract class LJRequest: ILJRequest
- {
- public string GetApiName()
- {
- var typeName = this.GetType().Name;
- return typeName.Substring(0, typeName.Length - 7);
- }
- }
- }
|