Skip to content

Commit 01ea49d

Browse files
committed
LP5 M1 Starter code - replace Dat_M2 with Files_M1
1 parent faa774b commit 01ea49d

21 files changed

Lines changed: 21 additions & 21 deletions

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Interfaces/IBankAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Data_M2;
1+
namespace Files_M1;
22

33
public interface IBankAccount
44
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Interfaces/IBankCustomer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Data_M2;
1+
namespace Files_M1;
22

33
public interface IBankCustomer
44
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Interfaces/IMonthlyReportGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Data_M2;
3+
namespace Files_M1;
44

55
public interface IMonthlyReportGenerator
66
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Interfaces/IQuarterlyReportGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Data_M2;
3+
namespace Files_M1;
44

55
public interface IQuarterlyReportGenerator
66
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Interfaces/IYearlyReportGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Data_M2;
3+
namespace Files_M1;
44

55
public interface IYearlyReportGenerator
66
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Models/Bank.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33

4-
namespace Data_M2;
4+
namespace Files_M1;
55

66
public class Bank
77
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Models/BankAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33

4-
namespace Data_M2;
4+
namespace Files_M1;
55

66
public class BankAccount : IBankAccount
77
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Models/BankCustomer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Collections.Generic;
33

4-
namespace Data_M2;
4+
namespace Files_M1;
55

66
public partial class BankCustomer : IBankCustomer
77
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Models/BankCustomerMethods.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Data_M2;
3+
namespace Files_M1;
44

55
public partial class BankCustomer : IBankCustomer
66
{

DownloadableCodeProjects/LP5_file-io-json-async/Files_M1/Starter/Models/CheckingAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace Data_M2;
3+
namespace Files_M1;
44

55
public class CheckingAccount : BankAccount
66
{

0 commit comments

Comments
 (0)