PlatformDataService.cs 641 B

1234567891011121314151617181920
  1. using GxPress.Repository.Interface;
  2. using GxPress.Service.Interface.PlatformData;
  3. namespace GxPress.Service.Implement.PlatformData
  4. {
  5. public class PlatformDataService : IPlatformDataService
  6. {
  7. private readonly IUserRepository userRepository;
  8. public PlatformDataService(IUserRepository userRepository)
  9. {
  10. this.userRepository = userRepository;
  11. }
  12. // public async Task<PlatformDataResult> GetPlatformDataAsync()
  13. // {
  14. // var result = new PlatformDataResult();
  15. // result.PlatformOperationDataResult = new PlatformOperationDataResult();
  16. // }
  17. }
  18. }