diff --git a/DeskHubSharp/BusinessLayer/Email.cs b/DeskHubSharp/BusinessLayer/EmailBLL.cs similarity index 97% rename from DeskHubSharp/BusinessLayer/Email.cs rename to DeskHubSharp/BusinessLayer/EmailBLL.cs index de101e2..205bf6e 100644 --- a/DeskHubSharp/BusinessLayer/Email.cs +++ b/DeskHubSharp/BusinessLayer/EmailBLL.cs @@ -11,7 +11,7 @@ using MimeKit; namespace DeskHubSharp { - class Email + class EmailBLL { // TODO: finish this class // TODO: debug feedback form @@ -21,7 +21,7 @@ namespace DeskHubSharp private string _name; private string _message; - public Email(TextBox name, TextBox emailBody) + public EmailBLL(TextBox name, TextBox emailBody) { _name = name.Text; _message = emailBody.Text; diff --git a/DeskHubSharp/DeskHubSharp.csproj b/DeskHubSharp/DeskHubSharp.csproj index d7236e3..3b59cb3 100644 --- a/DeskHubSharp/DeskHubSharp.csproj +++ b/DeskHubSharp/DeskHubSharp.csproj @@ -72,6 +72,7 @@ MSBuild:Compile + SearchWindow.xaml @@ -101,7 +102,7 @@ App.xaml Code - + diff --git a/DeskHubSharp/FeedbackWindow.xaml.cs b/DeskHubSharp/FeedbackWindow.xaml.cs index 559908b..7f61d3b 100644 --- a/DeskHubSharp/FeedbackWindow.xaml.cs +++ b/DeskHubSharp/FeedbackWindow.xaml.cs @@ -31,7 +31,7 @@ namespace DeskHubSharp private void btn_send_Click(object sender, RoutedEventArgs e) { - Email email = new Email(txtbox_name, txtbox_feedbackmessage); + EmailBLL email = new EmailBLL(txtbox_name, txtbox_feedbackmessage); email.CreateMessage(); } } diff --git a/DeskHubSharp/Models/Email.cs b/DeskHubSharp/Models/Email.cs new file mode 100644 index 0000000..8c9d98a --- /dev/null +++ b/DeskHubSharp/Models/Email.cs @@ -0,0 +1,7 @@ +namespace DeskHubSharp +{ + public class Email + { + + } +} \ No newline at end of file diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache b/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache index f00acee..6cccf02 100644 --- a/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache +++ b/DeskHubSharp/obj/Debug/DeskHubSharp.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -b453599d59232d67f8d66bb03989d81f4cf64751 +5fc4a31b9da29844dd7ba799c86639ce1bf7d4b0 diff --git a/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache b/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache index cf45637..45095b5 100644 Binary files a/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache and b/DeskHubSharp/obj/Debug/DeskHubSharp.csprojAssemblyReference.cache differ