Beispiel #1
0
 public UserManager(IUserDal userDal, IMapper mapper, IAuthHelper authHelper, IHttpContextAccessor httpContextAccessor, ILikeDal likeDal, IUserRoleDal userRoleDal)
 {
     this.userRoleDal         = userRoleDal;
     this.likeDal             = likeDal;
     this.httpContextAccessor = httpContextAccessor;
     this.authHelper          = authHelper;
     this.mapper  = mapper;
     this.userDal = userDal;
 }
Beispiel #2
0
 public LikeManager(ILikeDal likeDal)
 {
     _likeDal = likeDal;
 }
Beispiel #3
0
 public LikeManager(ILikeDal likeDal, IUserService userService, IVideoService videoService)
 {
     _likeDal      = likeDal;
     _userService  = userService;
     _videoService = videoService;
 }
Beispiel #4
0
 public class LikeManager : EntityManager <Like>, ILikeService { public LikeManager(ILikeDal repostory) : base(repostory)
                                                                 {
                                                                 }
Beispiel #5
0
 public LikeManager(ILikeDal likeDal, IHttpContextAccessor httpContextAccessor, IUserDal userDal)
 {
     this.userDal             = userDal;
     this.httpContextAccessor = httpContextAccessor;
     this.likeDal             = likeDal;
 }