예제 #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;
 }