示例#1
0
 public Compo_ListAddressModel(IMsgBox msgBox, ILocalizer localizer, IUserApplication userApplication, IAddressApplication addressApplication, ILanguageApplication languageApplication, IMapper mapper)
 {
     _MsgBox              = msgBox;
     _Localizer           = localizer;
     _UserApplication     = userApplication;
     _AddressApplication  = addressApplication;
     _LanguageApplication = languageApplication;
     _Mapper              = mapper;
 }
 public PersonController(
     IPersonApplication personApplication,
     IEmailAddressApplication emailAddressApplication,
     IAddressApplication addressApplication,
     ICreditCardApplication creditCardApplication,
     IHttpContextAccessor httpContextAccessor) : base(httpContextAccessor)
 {
     this.personApplication       = personApplication;
     this.emailAddressApplication = emailAddressApplication;
     this.addressApplication      = addressApplication;
     this.creditCardApplication   = creditCardApplication;
 }
示例#3
0
 public Compo_AddAddressModel(ILocalizer localizer, IMsgBox msgBox, IAddressApplication addressApplication)
 {
     _Localizer          = localizer;
     _MsgBox             = msgBox;
     _AddressApplication = addressApplication;
 }