コード例 #1
0
 public MatchingService()
 {
     dbContext = new ShowMeAroundContext();
     userDA = new UserDA();
     provider = new MatchingProvider();
     auth = new Authentication();
 }
コード例 #2
0
 public UserService()
 {
     userDA = new UserDA();
     sessionDA = new SessionDA();
     auth = new Authentication();
     interestDA = new InterestDA();
     languageDA = new LanguageDA();
 }
コード例 #3
0
ファイル: Authentication.cs プロジェクト: valorl/ShowMeAround
 public Authentication()
 {
     userDA = new UserDA();
     sessionDA = new SessionDA();
 }
コード例 #4
0
 public SessionService()
 {
     sessionDA = new SessionDA();
     userDA = new UserDA();
     auth = new Authentication();
 }