Пример #1
0
 public MessageService(CwirCwirDbContext context)
 {
     _context = context;
 }
Пример #2
0
 public ResponseService(CwirCwirDbContext context)
 {
     _context = context;
 }
Пример #3
0
 public UserService(CwirCwirDbContext context)
 {
     _context = context;
 }
Пример #4
0
 public NotificationService(CwirCwirDbContext context)
 {
     _context = context;
 }
Пример #5
0
 public PostService(CwirCwirDbContext context, IResponseService responseService)
 {
     _context         = context;
     _responseService = responseService;
 }
Пример #6
0
 public CwirCwirDbContextService(CwirCwirDbContext context)
 {
     _context = context;
 }
Пример #7
0
 public LikeService(CwirCwirDbContext context)
 {
     _context = context;
 }