예제 #1
0
 public LoginController(TwitterCloneContext context, IConfiguration configuration)
 {
     _context      = context;
     Configuration = configuration;
 }
 public GenericRepository(TwitterCloneContext Context)
 {
     _context = Context;
 }
예제 #3
0
 public TwitterCloneRepository(TwitterCloneContext a_context, ILogger <TwitterCloneRepository> a_logger)
 {
     m_context = a_context;
     m_logger  = a_logger;
 }
예제 #4
0
 public TweetsController(TwitterCloneContext context)
 {
     _context = context;
 }
예제 #5
0
 public FollowsController(TwitterCloneContext context)
 {
     _context = context;
 }
예제 #6
0
 public UnitOfWork(TwitterCloneContext Context)
 {
     _context = Context;
 }
 public TwitterCloneContextSeedData(TwitterCloneContext a_context, UserManager <TwitterCloneUser> a_userManager)
 {
     m_context     = a_context;
     m_userManager = a_userManager;
 }
예제 #8
0
 public UsersController(TwitterCloneContext context, IConfiguration config)
 {
     _context = context;
     _config  = config;
 }
예제 #9
0
 public UsersController(TwitterCloneContext context)
 {
     _context = context;
 }