Beispiel #1
0
 public OrderingService(
     CoEcoEntities db)
 {
     this.db = db;
 }
Beispiel #2
0
 public AppQueryService(CoEcoEntities db)
 {
     this.db = db;
 }
Beispiel #3
0
 public TestController(CoEcoEntities db)
 {
     this.db = db;
 }
Beispiel #4
0
 public MessagesService(CoEcoEntities db)
 {
     this.db = db;
 }
Beispiel #5
0
 public DistanceService(CoEcoEntities db)
 {
     this.db = db;
 }
Beispiel #6
0
 public DataService(CoEcoEntities context, string userId)
 {
     _context = context;
     _userId  = userId;
 }