-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from XanatosX/develop
Update master Release 1.0.1
- Loading branch information
Showing
61 changed files
with
680 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# XanatosX.IL2Career.DatabaseAccess | ||
|
||
This readme is a stub! |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,11 @@ | ||
using IL2CarrerReviverModel.Models; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using IL2CareerModel.Data.Gateways; | ||
using IL2CarrerReviverModel.Models; | ||
|
||
namespace IL2CarrerReviverModel.Data.Gateways; | ||
public interface ICareerGateway | ||
{ | ||
IEnumerable<Career> GetAll(); | ||
|
||
Career? GetById(long id); | ||
|
||
Career? Update(Career career); | ||
/// <summary> | ||
/// The gateway to change the career table on the database | ||
/// </summary> | ||
public interface ICareerGateway : IReadGateway<Career>, IWriteGateway<Career> | ||
{ | ||
} |
Oops, something went wrong.