public LostFoundController(ILostAndFoundType lostAndFoundType, ILostAndFoundService lostAndFoundService, UserManager <ApplicationUser> userManager, IOtherDocumentService otherDocumentService, IAddressInformationService addressInformationService)
 {
     this.lostAndFoundType          = lostAndFoundType;
     this.lostAndFoundService       = lostAndFoundService;
     this.otherDocumentService      = otherDocumentService;
     this.addressInformationService = addressInformationService;
     _userManager = userManager;
 }
Exemple #2
0
 public DocumentService(
     IRepository <Document, DocumentDto, ISpecification <DocumentDto> > repository,
     IOtherDocumentService otherDocumentService,
     ApplicationContext context,
     ICacheService <DocumentDto, Document> cacheService)
     : base(repository, context, cacheService)
 {
     _otherDocumentService = otherDocumentService;
 }
 public HomeController(
     IDocumentService documentService,
     IOtherDocumentItemService otherDocumentItemService,
     IOtherDocumentPaymentService otherDocumentPaymentService,
     IOtherDocumentService otherDocumentService
     )
 {
     _documentService             = documentService;
     _otherDocumentItemService    = otherDocumentItemService;
     _otherDocumentPaymentService = otherDocumentPaymentService;
     _otherDocumentService        = otherDocumentService;
 }
Exemple #4
0
 public OthersItemController(ILostAndFoundService lostAndFoundService, UserManager <ApplicationUser> userManager, IOtherDocumentService otherDocumentService)
 {
     this.lostAndFoundService  = lostAndFoundService;
     this.otherDocumentService = otherDocumentService;
     _userManager = userManager;
 }