Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
uerbzr committed Apr 24, 2023
1 parent 0491d37 commit ec5e1b6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Build started...
Build succeeded.
To undo this action, use Remove-Migration.

This should generate a Migrations folder with some details of what your db will look like in c#.
This should generate a Migrations folder with some c# to create the database.


6. In the Package Manager Console update the database : PM> Update-Database
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ namespace csharp_api_migrations.Main.DataImport.Interface
{
public interface IFileImporter
{
List<Customer> ProcessCustomerCsvFile(string path);
List<Customer> ProcessCustomersCsvFile(string path);
List<Customer> ProcessProductsCsvFile(string path);


}
}

0 comments on commit ec5e1b6

Please sign in to comment.