-
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.
- Loading branch information
1 parent
743c5a9
commit ff13df8
Showing
2 changed files
with
18 additions
and
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using DARASA.DB; | ||
using Microsoft.EntityFrameworkCore; | ||
|
||
namespace DARASA; | ||
|
||
public class Rank | ||
{ | ||
public void RankMonthlyBiz(Darasadb db) | ||
{ | ||
//TODO: Rank enterprises with the games. | ||
// gets all enterprises that have donated to CASA (active enterprise adverts) | ||
// gets all active games | ||
// Ranks enterprises with the ones that haven't appeared last months adverts first (gameEnterpriseAdvertAppearence) | ||
// ranks enterprise that have appeared after. | ||
// if there aren't enough games for enterprises these pass to the next month as first | ||
|
||
} | ||
} |