示例#1
0
 public CommentsController(ICommentsService commentsService, UserManager <ApplicationUser> userManager, INotificationsService notificationsService, IBeatsService beatsService)
 {
     this.commentsService      = commentsService;
     this.userManager          = userManager;
     this.notificationsService = notificationsService;
     this.beatsService         = beatsService;
 }
示例#2
0
 public LikesController(ILikeService likeService, UserManager <ApplicationUser> userManager, INotificationsService notificationsService, IBeatsService beatsService)
 {
     this.likeService          = likeService;
     this.userManager          = userManager;
     this.notificationsService = notificationsService;
     this.beatsService         = beatsService;
 }
示例#3
0
 public BeatsController(IBeatsService beatsService, IBeatsUploadCloudService beatsCloudService, IPictureService pictureCloudService, UserManager <ApplicationUser> userManager)
 {
     this.beatsService        = beatsService;
     this.beatsCloudService   = beatsCloudService;
     this.pictureCloudService = pictureCloudService;
     this.userManager         = userManager;
 }
示例#4
0
 public UsersController(IUsersService usersService, IBeatsService beatsService, IFollowService followService, UserManager <ApplicationUser> userManager, INotificationsService notificationsService)
 {
     this.usersService         = usersService;
     this.beatsService         = beatsService;
     this.followService        = followService;
     this.userManager          = userManager;
     this.notificationsService = notificationsService;
 }
示例#5
0
 public SortHub(IBeatsService beatsService)
 {
     this.beatsService = beatsService;
 }
示例#6
0
 public HomeController(IBeatsService beatsService, ICartsService cartsService)
 {
     this.beatsService = beatsService;
     this.cartsService = cartsService;
 }
示例#7
0
 public CommentsService(IDeletableEntityRepository <Comment> commentsRepository)
 {
     this.commentsRepository   = commentsRepository;
     this.notificationsService = notificationsService;
     this.beatsService         = beatsService;
 }
示例#8
0
 public BeatsController(IBeatsService beatsService, ILikeService likeService, UserManager <ApplicationUser> userManager)
 {
     this.beatsService = beatsService;
     this.likeService  = likeService;
     this.userManager  = userManager;
 }