コード例 #1
0
 public PerformenceController(IPerformenceService performenceService,
                              Microsoft.AspNetCore.Identity.UserManager <Data.Models.ApplicationUser> userManager,
                              ICategoryService categoryService)
 {
     this.performenceService = performenceService;
     this.userManager        = userManager;
     this.categoryService    = categoryService;
 }
コード例 #2
0
 public OrderService(
     IRepository <Order> repositoryOrder,
     IUserService userService,
     IArtistService artistService,
     IPerformenceService performenceService
     )
 {
     this.repositoryOrder    = repositoryOrder;
     this.userService        = userService;
     this.artistService      = artistService;
     this.performenceService = performenceService;
 }
コード例 #3
0
 public DashboardController(IArtistService artistService, IPerformenceService performenceService)
 {
     this.artistService      = artistService;
     this.performenceService = performenceService;
 }
コード例 #4
0
 public OrderArtistController(IOrderService orderService, IPerformenceService performenceService)
 {
     this.OrderService       = orderService;
     this.PerformenceService = performenceService;
 }