コード例 #1
0
 public MemeController(IMeme memeService, IUserMeme userMemeService, ITheLoai theLoaiService, IMemeCanDuyet memeCanDuyetService)
 {
     this.memeService         = memeService;
     this.userMemeService     = userMemeService;
     this.theLoaiService      = theLoaiService;
     this.memeCanDuyetService = memeCanDuyetService;
 }
コード例 #2
0
 public TheLoaisController(ITheLoai context)
 {
     _context = context;
 }
コード例 #3
0
 public MemesController(IMeme context, ITheLoai theLoaiService)
 {
     _context            = context;
     this.theLoaiService = theLoaiService;
 }
コード例 #4
0
 public HomeController(ITheLoai theLoaiService)
 {
     this.theLoaiService = theLoaiService;
 }
コード例 #5
0
 public MemeCanDuyetsController(IMemeCanDuyet context, ITheLoai theLoaiService, IMeme memeService)
 {
     _context            = context;
     this.theLoaiService = theLoaiService;
     this.memeService    = memeService;
 }