Ejemplo n.º 1
0
 public MatchingService()
 {
     dbContext = new ShowMeAroundContext();
     userDA = new UserDA();
     provider = new MatchingProvider();
     auth = new Authentication();
 }
Ejemplo n.º 2
0
 public UserService()
 {
     userDA = new UserDA();
     sessionDA = new SessionDA();
     auth = new Authentication();
     interestDA = new InterestDA();
     languageDA = new LanguageDA();
 }
Ejemplo n.º 3
0
 public Authentication()
 {
     userDA = new UserDA();
     sessionDA = new SessionDA();
 }
Ejemplo n.º 4
0
 public SessionService()
 {
     sessionDA = new SessionDA();
     userDA = new UserDA();
     auth = new Authentication();
 }