Exemplo n.º 1
0
 public AccountAdminController(IAccountSevices Account, IIdentityMessageService Mail, ICustomerSevices Customer, ISettingSevice Setting)
 {
     _Account  = Account;
     _Mail     = Mail;
     _Customer = Customer;
     _Setting  = Setting;
 }
Exemplo n.º 2
0
 public AccountController(IRolesServices Role, IAccountSevices Account, IIdentityMessageService Mail, ICustomerSevices Customer, ISettingSevice Setting)
 {
     _Account = Account;
     _Mail    = Mail;
     //_Customer = Customer;
     _Setting = Setting;
     _Role    = Role;
 }
Exemplo n.º 3
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;
 }
Exemplo n.º 4
0
 public AdminController(IAccountSevices AccountServices, IMapper Maper)
 {
     _AccountServices = AccountServices;
     _Maper           = Maper;
 }