示例#1
0
 public AccountAdminController(IAccountSevices Account, IIdentityMessageService Mail, ICustomerSevices Customer, ISettingSevice Setting)
 {
     _Account  = Account;
     _Mail     = Mail;
     _Customer = Customer;
     _Setting  = Setting;
 }
示例#2
0
 public HomeController(IAccountResponsitory Account, IMapper Mapper, ICustomerSevices Customer, IAccountSevices AccountServices, ISettingSevice Settingservices, IVisitorSevices VisitorSevices, IChatLineSevices ChatLineServices)
 {
     _Account          = Account;
     _Mapper           = Mapper;
     _Customer         = Customer;
     _Settingservices  = Settingservices;
     _AccountServices  = AccountServices;
     _VisitorSevices   = VisitorSevices;
     _ChatLineServices = ChatLineServices;
 }
示例#3
0
 public AccountController(IRolesServices Role, IAccountSevices Account, IIdentityMessageService Mail, ICustomerSevices Customer, ISettingSevice Setting)
 {
     _Account = Account;
     _Mail    = Mail;
     //_Customer = Customer;
     _Setting = Setting;
     _Role    = Role;
 }