Files
Groupware/JobReportMailService/CSetting.cs
2020-12-11 17:53:47 +09:00

23 lines
639 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace JobReportMailService
{
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();
}
}
}