1234567891011121314151617181920 |
- using GxPress.Repository.Interface;
- using GxPress.Service.Interface.PlatformData;
- namespace GxPress.Service.Implement.PlatformData
- {
- public class PlatformDataService : IPlatformDataService
- {
- private readonly IUserRepository userRepository;
- public PlatformDataService(IUserRepository userRepository)
- {
- this.userRepository = userRepository;
- }
- // public async Task<PlatformDataResult> GetPlatformDataAsync()
- // {
- // var result = new PlatformDataResult();
- // result.PlatformOperationDataResult = new PlatformOperationDataResult();
- // }
- }
- }
|