add CreateGetUrl #33

This commit is contained in:
stubbfel
2013-06-17 12:14:02 +02:00
parent 25b05855a2
commit e451f7ff89

View File

@@ -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;