|
@@ -34,7 +34,7 @@ namespace MySystem
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- private void ExportProfitData()
|
|
|
+ public void ExportProfitData()
|
|
|
{
|
|
|
string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
|
|
|
WebCMSEntities db = new WebCMSEntities();
|
|
@@ -103,7 +103,7 @@ namespace MySystem
|
|
|
db.Dispose();
|
|
|
}
|
|
|
|
|
|
- private void ExportSubsidyData()
|
|
|
+ public void ExportSubsidyData()
|
|
|
{
|
|
|
string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
|
|
|
WebCMSEntities db = new WebCMSEntities();
|
|
@@ -152,7 +152,7 @@ namespace MySystem
|
|
|
db.Dispose();
|
|
|
}
|
|
|
|
|
|
- private void CheckProfit()
|
|
|
+ public void CheckProfit()
|
|
|
{
|
|
|
DateTime now = DateTime.Now;
|
|
|
string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
|
|
@@ -382,7 +382,7 @@ namespace MySystem
|
|
|
db.Dispose();
|
|
|
}
|
|
|
|
|
|
- private void CheckSubsidy()
|
|
|
+ public void CheckSubsidy()
|
|
|
{
|
|
|
DateTime now = DateTime.Now;
|
|
|
string Month = DateTime.Now.AddMonths(-1).ToString("yyyyMM");
|