Renamed namespaces
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
namespace Password_Manager
|
namespace Common
|
||||||
{
|
{
|
||||||
class Config
|
class Config
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using Microsoft.VisualBasic.FileIO;
|
using Microsoft.VisualBasic.FileIO;
|
||||||
|
|
||||||
namespace Password_Manager
|
namespace Common
|
||||||
{
|
{
|
||||||
static class ConfigFileManager
|
static class ConfigFileManager
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Password_Manager
|
namespace Common
|
||||||
{
|
{
|
||||||
class InvalidConfigurationException : Exception
|
class InvalidConfigurationException : Exception
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
using Password_Manager;
|
using System.Text;
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Password_Generator
|
namespace Common
|
||||||
{
|
{
|
||||||
static class PasswordGenerator
|
static class PasswordGenerator
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
using System.Diagnostics;
|
using System.Diagnostics;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
|
|
||||||
namespace Password_Manager
|
namespace Common
|
||||||
{
|
{
|
||||||
public delegate void ProcessSuccess();
|
public delegate void ProcessSuccess();
|
||||||
public delegate void ProcessFailure(Exception e);
|
public delegate void ProcessFailure(Exception e);
|
||||||
|
|||||||
2
GUI/GeneratePassword.Designer.cs
generated
2
GUI/GeneratePassword.Designer.cs
generated
@@ -1,4 +1,4 @@
|
|||||||
namespace Password_Manager
|
namespace GUI
|
||||||
{
|
{
|
||||||
partial class GeneratePassword
|
partial class GeneratePassword
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,4 @@
|
|||||||
using Password_Generator;
|
namespace GUI
|
||||||
|
|
||||||
namespace Password_Manager
|
|
||||||
{
|
{
|
||||||
public delegate void MethodRequest();
|
public delegate void MethodRequest();
|
||||||
public partial class GeneratePassword : Form
|
public partial class GeneratePassword : Form
|
||||||
|
|||||||
2
GUI/MainForm.Designer.cs
generated
2
GUI/MainForm.Designer.cs
generated
@@ -1,4 +1,4 @@
|
|||||||
namespace Password_Manager
|
namespace GUI
|
||||||
{
|
{
|
||||||
sealed partial class MainForm : Form
|
sealed partial class MainForm : Form
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Password_Manager
|
namespace GUI
|
||||||
{
|
{
|
||||||
sealed public partial class MainForm : Form
|
sealed public partial class MainForm : Form
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
using System.Collections;
|
using System.Collections;
|
||||||
|
|
||||||
namespace Password_Manager
|
namespace GUI
|
||||||
{
|
{
|
||||||
public delegate string SearchQuery();
|
public delegate string SearchQuery();
|
||||||
public class PasswordListBox : ListBox
|
public class PasswordListBox : ListBox
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
namespace Password_Manager
|
namespace GUI
|
||||||
{
|
{
|
||||||
public delegate string DataRequest(); //Fire whenever a specific field of ProfileHandler.CurrentProfile is needed
|
public delegate string DataRequest(); //Fire whenever a specific field of ProfileHandler.CurrentProfile is needed
|
||||||
internal static class Program
|
internal static class Program
|
||||||
|
|||||||
Reference in New Issue
Block a user