コード例 #1
0
 public UpdateProfileHandler(IKweetContext context)
 {
     _context = context;
 }
コード例 #2
0
 public KweetService(IKweetContext context, IMapper mapper)
 {
     _context = context;
     _mapper  = mapper;
 }
コード例 #3
0
 public CreateFollowHandler(IKweetContext context)
 {
     _context = context;
 }
コード例 #4
0
 public DeleteFollowHandler(IKweetContext context)
 {
     _context = context;
 }
コード例 #5
0
 public LikeService(IKweetContext context)
 {
     _context = context;
 }