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 GetPlatformDataAsync() // { // var result = new PlatformDataResult(); // result.PlatformOperationDataResult = new PlatformOperationDataResult(); // } } }