123456789101112131415161718192021222324252627282930313233 |
- using System.Net.Http;
- using System.Net.Http.Json;
- using System.Threading.Tasks;
- using wispro.sp.web.Models;
- namespace wispro.sp.web.Services
- {
- public interface IProfileService
- {
- Task<BasicProfileDataType> GetBasicAsync();
- Task<AdvancedProfileData> GetAdvancedAsync();
- }
- public class ProfileService : IProfileService
- {
- private readonly HttpClient _httpClient;
- public ProfileService(HttpClient httpClient)
- {
- _httpClient = httpClient;
- }
- public async Task<BasicProfileDataType> GetBasicAsync()
- {
- return await _httpClient.GetFromJsonAsync<BasicProfileDataType>("data/basic.json");
- }
- public async Task<AdvancedProfileData> GetAdvancedAsync()
- {
- return await _httpClient.GetFromJsonAsync<AdvancedProfileData>("data/advanced.json");
- }
- }
- }
|