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;
 }
 public AddressInformationsController(IAddressInformationService addressInformationService)
 {
     _addressInformationService = addressInformationService;
 }