| | |
| | | /// </summary> |
| | | public class SystemAppService : IDynamicApiController |
| | | { |
| | | private readonly ISystemService _systemService; |
| | | public SystemAppService(ISystemService systemService) |
| | | { |
| | | _systemService = systemService; |
| | | } |
| | | //private readonly ISystemService _systemService; |
| | | //public SystemAppService(ISystemService systemService) |
| | | //{ |
| | | // _systemService = systemService; |
| | | //} |
| | | |
| | | /// <summary> |
| | | /// 获取系统描述 |
| | | /// </summary> |
| | | /// <returns></returns> |
| | | public string GetDescription() |
| | | { |
| | | return _systemService.GetDescription(); |
| | | } |
| | | ///// <summary> |
| | | ///// 获取系统描述 |
| | | ///// </summary> |
| | | ///// <returns></returns> |
| | | //public string GetDescription() |
| | | //{ |
| | | // return _systemService.GetDescription(); |
| | | //} |
| | | } |