Exemplo n.º 1
0
 public RoleRepository(RedeSocialContext redeSocialContext)
 {
     this.Context = redeSocialContext;
 }
Exemplo n.º 2
0
 public CommentService(RedeSocialContext context)
 {
     _redeSocialDb = context;
 }
 public AccountRepository(RedeSocialContext redeSocialContext)
 {
     this.Context = redeSocialContext;
 }
Exemplo n.º 4
0
 public AmigosRepository(RedeSocialContext context) : base(context)
 {
     _context = context;
 }
Exemplo n.º 5
0
 public LikePostRepository(RedeSocialContext context) : base(context)
 {
 }
Exemplo n.º 6
0
 public PostRepository(RedeSocialContext context)
 {
     Context = context;
 }
Exemplo n.º 7
0
 public CommentRepository(RedeSocialContext context)
 {
     Context = context;
 }
Exemplo n.º 8
0
 public PostController(RedeSocialContext context)
 {
     postService = new PostService(context);
 }
Exemplo n.º 9
0
 public CommentController(RedeSocialContext context)
 {
     commentService = new CommentService(context);
 }
 public ComentarioRepository(RedeSocialContext redeSocialContext)
 {
     this.Context = redeSocialContext;
 }
Exemplo n.º 11
0
 public CommentPostRepository(RedeSocialContext context) : base(context)
 {
     _context = context;
 }
Exemplo n.º 12
0
 protected BaseRepository(RedeSocialContext context)
 {
     Context = context;
     _dbSet  = context.Set <TModel>();
 }
Exemplo n.º 13
0
 public UnitOfWork(
     RedeSocialContext redeSocialContext)
 {
     _redeSocialContext = redeSocialContext;
 }
Exemplo n.º 14
0
 public UsuarioRepository(RedeSocialContext context) : base(context)
 {
     _context = context;
 }
 public PostagemRepository(RedeSocialContext redeSocialContext)
 {
     this.Context = redeSocialContext;
 }
Exemplo n.º 16
0
 public PostService(RedeSocialContext context)
 {
     _redeSocialDb = context;
 }