Exemplo n.º 1
0
 public AccountController(IUnitOfWork db, UserManager <IdentityUser> userManager, SignInManager <IdentityUser> signInManager, ICustomerCore customer)
 {
     _db            = db;
     _userManager   = userManager;
     _signInManager = signInManager;
     _customer      = customer;
 }
Exemplo n.º 2
0
 public ProductController(IProductCore product, IOrderCore order, ICustomerCore customer, IRegionCore region, IAreaCore area, ICatalogCore catalog, IGeneralSettingCore setting, IOrderCartCore orderCartCore)
 {
     _product       = product;
     _order         = order;
     _customer      = customer;
     _region        = region;
     _area          = area;
     _catalog       = catalog;
     _setting       = setting;
     _orderCartCore = orderCartCore;
 }
Exemplo n.º 3
0
 public CustomerController(IOrderCore order, ICustomerCore customer, SignInManager <IdentityUser> signInManager)
 {
     _order         = order;
     _customer      = customer;
     _signInManager = signInManager;
 }