Skip to content

Commit

Permalink
More using statements
Browse files Browse the repository at this point in the history
  • Loading branch information
nivereno committed Sep 1, 2021
1 parent 105870b commit 42d36d1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion TournamentTrackerLibrary/DataAccess/IDataConnection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using TrackerLibrary.Models;

namespace TrackerLibrary
namespace TrackerLibrary.DataAccess
{
public interface IDataConnection
{
Expand Down
2 changes: 1 addition & 1 deletion TournamentTrackerLibrary/DataAccess/SqlConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using TrackerLibrary.Models;

namespace TrackerLibrary
namespace TrackerLibrary.DataAccess
{
public class SqlConnector : IDataConnection
{
Expand Down
2 changes: 1 addition & 1 deletion TournamentTrackerLibrary/DataAccess/TextConnector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
using System.Threading.Tasks;
using TrackerLibrary.Models;

namespace TrackerLibrary
namespace TrackerLibrary.DataAccess
{
public class TextConnector : IDataConnection
{
Expand Down
2 changes: 2 additions & 0 deletions TrackerUI/CreatePrizeForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
using System.Threading.Tasks;
using System.Windows.Forms;
using TrackerLibrary;
using TrackerLibrary.DataAccess;
using TrackerLibrary.Models;

namespace TrackerUI
{
Expand Down

0 comments on commit 42d36d1

Please sign in to comment.