예제 #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
 public Authentication()
 {
     userDA = new UserDA();
     sessionDA = new SessionDA();
 }
예제 #4
0
 public SessionService()
 {
     sessionDA = new SessionDA();
     userDA = new UserDA();
     auth = new Authentication();
 }