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