public GroupMembersController(PSQLDbContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public PhotosController(PSQLDbContext context)
 {
     _context = context;
 }
 public CommentsController(PSQLDbContext context)
 {
     _context             = context;
     this.commentsService = new CommentsService(_context);
 }
Beispiel #4
0
 public CountryCodesController(PSQLDbContext context)
 {
     _context = context;
 }
 public ConversationsController(PSQLDbContext context)
 {
     _context = context;
 }
Beispiel #6
0
 public PostsController(PSQLDbContext context)
 {
     _context = context;
 }
 public NotificationsController(PSQLDbContext context)
 {
     _context = context;
 }
 public LikesController(PSQLDbContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public FriendsController(PSQLDbContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public CommentsService(PSQLDbContext context)
 {
     _context = context;
 }
Beispiel #11
0
 public UsersController(PSQLDbContext context)
 {
     _context = context;
 }
 public MessagesController(PSQLDbContext context)
 {
     _context = context;
 }