This commit is contained in:
chi
2020-06-01 16:01:27 +09:00
parent 2bb7472cb0
commit 96d6628404
15 changed files with 1338 additions and 966 deletions

22
MailManager/CSetting.cs Normal file
View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MailManager
{
public class CSetting : arUtil.Setting
{
public string connstr { get; set; }
public override void AfterLoad()
{
//throw new NotImplementedException();
if (connstr == "")
connstr = "Data Source=10.131.15.18;Initial Catalog=EE;Persist Security Info=True;User ID=eeuser;Password=Amkor123!";
}
public override void AfterSave()
{
//throw new NotImplementedException();
}
}
}