var x = (object)null;
x = StocktakeBll.GetMunicipalRegionData<Repertory>("");
#region
/// <summary>
///
/// </summary>
/// <returns></returns>
public IList<T> GetMunicipalRegionData<T>(string contractId = "") where T : class, new()
{
string where = " ";
if (contractId != "")
where += " State=" + contractId + "";
return StocktakeBll.QueryAllByCondtion<T>(typeof(T), where);
}
#endregion