Exemplo n.º 1
0
 public AccountController(IWit_Company ICom, IWit_User IUs)
     : this(new UserManager <ApplicationUser>(new UserStore <ApplicationUser>(new ApplicationDbContext())))
 {
     ICompany = ICom;
     IUser    = IUs;
 }
Exemplo n.º 2
0
 public CategoryController(IWit_Category iCat, IWit_Company IComp)
 {
     ICategory = iCat;
     ICompany  = IComp;
 }
Exemplo n.º 3
0
 public CompanyController(IWit_Company iComp)
 {
     ICompany = iComp;
 }
Exemplo n.º 4
0
 public UserController(IWit_User iUser, IWit_Company iComp, IUsersViewModel iUserView)
 {
     IUser     = iUser;
     ICompany  = iComp;
     IUserView = iUserView;
 }