using System;
using System.Globalization;
using System.Text;
using System.Web.Mvc;
namespace Wierszowki.Helpers
{
public static class SelectExtension
{
public static string MonthSelect(this HtmlHelper helper, string id)
{
var sb = new StringBuilder();
sb.AppendFormat("");
return sb.ToString();
}
public static string YearSelect(this HtmlHelper helper, string id)
{
var sb = new StringBuilder();
sb.AppendFormat("");
return sb.ToString();
}
}
}