コード例 #1
0
 public GroupRepository(Bookmakcontex context)
 {
     _context = context;
 }
コード例 #2
0
 public UserRepository(Bookmakcontex context)
 {
     _context = context;
 }
コード例 #3
0
 public Components(Bookmakcontex contex)
 {
     _contex = contex;
 }
コード例 #4
0
 public HomeController(ILogger <HomeController> logger, Bookmakcontex contex, IGroupRepository groupRepository)
 {
     _logger          = logger;
     _context         = contex;
     _groupRepository = groupRepository;
 }