Client fixes

Client is partially done.
227 warnings left out of 1500
I like Rider
This commit is contained in:
Pavel Vesely
2020-03-15 15:18:32 +01:00
parent 5b3feaf26f
commit cf6643aef3
92 changed files with 1283 additions and 1262 deletions

View File

@ -21,34 +21,34 @@ namespace Oqtane.Services
_navigationManager = navigationManager;
}
private string apiurl
private string Apiurl
{
get { return CreateApiUrl(_siteState.Alias, _navigationManager.Uri, "Profile"); }
}
public async Task<List<Profile>> GetProfilesAsync(int SiteId)
public async Task<List<Profile>> GetProfilesAsync(int siteId)
{
List<Profile> Profiles = await _http.GetJsonAsync<List<Profile>>(apiurl + "?siteid=" + SiteId.ToString());
return Profiles.OrderBy(item => item.ViewOrder).ToList();
List<Profile> profiles = await _http.GetJsonAsync<List<Profile>>(Apiurl + "?siteid=" + siteId.ToString());
return profiles.OrderBy(item => item.ViewOrder).ToList();
}
public async Task<Profile> GetProfileAsync(int ProfileId)
public async Task<Profile> GetProfileAsync(int profileId)
{
return await _http.GetJsonAsync<Profile>(apiurl + "/" + ProfileId.ToString());
return await _http.GetJsonAsync<Profile>(Apiurl + "/" + profileId.ToString());
}
public async Task<Profile> AddProfileAsync(Profile Profile)
public async Task<Profile> AddProfileAsync(Profile profile)
{
return await _http.PostJsonAsync<Profile>(apiurl, Profile);
return await _http.PostJsonAsync<Profile>(Apiurl, profile);
}
public async Task<Profile> UpdateProfileAsync(Profile Profile)
public async Task<Profile> UpdateProfileAsync(Profile profile)
{
return await _http.PutJsonAsync<Profile>(apiurl + "/" + Profile.SiteId.ToString(), Profile);
return await _http.PutJsonAsync<Profile>(Apiurl + "/" + profile.SiteId.ToString(), profile);
}
public async Task DeleteProfileAsync(int ProfileId)
public async Task DeleteProfileAsync(int profileId)
{
await _http.DeleteAsync(apiurl + "/" + ProfileId.ToString());
await _http.DeleteAsync(Apiurl + "/" + profileId.ToString());
}
}
}