add CreateGetUrl #33
This commit is contained in:
@@ -10,7 +10,7 @@ namespace CampusAppWP8.Model.Utility
|
||||
/// <summary>
|
||||
/// This class is a Model for the URLParameter like GET-Parameter
|
||||
/// </summary>
|
||||
public class URLParamModel
|
||||
public class UrlParamModel
|
||||
{
|
||||
#region Members
|
||||
|
||||
@@ -24,20 +24,20 @@ namespace CampusAppWP8.Model.Utility
|
||||
#region Constructor
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="URLParamModel" /> class.
|
||||
/// Initializes a new instance of the <see cref="UrlParamModel" /> class.
|
||||
/// </summary>
|
||||
/// <param name="key">the key for the parameter</param>
|
||||
public URLParamModel(string key)
|
||||
public UrlParamModel(string key)
|
||||
{
|
||||
this.key = key;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="URLParamModel" /> class.
|
||||
/// Initializes a new instance of the <see cref="UrlParamModel" /> class.
|
||||
/// </summary>
|
||||
/// <param name="key">the key for the parameter</param>>
|
||||
/// <param name="value">value of the parameter</param>
|
||||
public URLParamModel(string key, string value)
|
||||
public UrlParamModel(string key, string value)
|
||||
{
|
||||
this.key = key;
|
||||
this.Value = value;
|
||||
|
||||
Reference in New Issue
Block a user