コード例 #1
0
 public PropertyController(IPropertyService propertyService, IPropertyImageService propertyImageService, IPropertyDocumentService propertyDocumentService, IPortfolioService portfolioService, IMapper mapper, UserManager <ApplicationUser> userManager)
 {
     _propertyService         = propertyService;
     _propertyImageService    = propertyImageService;
     _propertyDocumentService = propertyDocumentService;
     _portfolioService        = portfolioService;
     _mapper      = mapper;
     _userManager = userManager;
 }
 public PropertyDocumentsController(ApplicationDbContext context, IMapper mapper, IPropertyDocumentService propertyDocumentService)
 {
     _context = context;
     _mapper  = mapper;
     _propertyDocumentService = propertyDocumentService;
 }
コード例 #3
0
 public PropertyDocumentController(IPropertyDocumentService propertyDocumentService)
 {
     _propertyDocumentService = propertyDocumentService;
 }