using HotelPms.Share.Data.Script;
|
using HotelPms.Share.Util;
|
using HotelPms.Share.Windows.Util;
|
|
namespace HotelPms.SourceFactory
|
{
|
public partial class FormScript : Form
|
{
|
public FormScript()
|
{
|
InitializeComponent();
|
}
|
|
private void btnPartition_Click(object sender, EventArgs e)
|
{
|
txtScript.Text = DataBaseCreator.CreatePartitionScript(@"C:\MsSqlData\Data\", "HotelPms", DateTime.Now);
|
GeneralSub.CopyToClipboard(txtScript.Text);
|
}
|
|
private void btnTextToClass_Click(object sender, EventArgs e)
|
{
|
txtScript.Text = ScriptCreator.GetTextBoxToClass(textBox1.Text, textBox2.Text);
|
GeneralSub.CopyToClipboard(txtScript.Text);
|
}
|
|
private void materialButton2_Click(object sender, EventArgs e)
|
{
|
txtScript.Text = ScriptCreator.GetClassToTextBox(textBox1.Text, textBox2.Text);
|
GeneralSub.CopyToClipboard(txtScript.Text);
|
}
|
}
|
}
|