public OrdersController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of orders controller");
     Repo = repo;
 }
 public LocationsController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of locations controller");
     Repo = repo;
 }
 public MenuPreBuiltController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of menuprebuilt controller");
     Repo = repo;
 }
 public InventoryController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of inventory controller");
     Repo = repo;
 }
 public AccountController(SignInManager <IdentityUser> signInManager, IZVRPubRepository repo)
 {
     _signInManager = signInManager;
     Repo           = repo;
 }
 public InventoryHasLocationController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of orders controller");
     Repo = repo;
 }
 public UserController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of user controller");
     Repo = repo;
 }
 public MenuPreBuiltHaasOrdersController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of menuprebuilt has orders controller");
     Repo = repo;
 }
Пример #9
0
 public UserHaasPreBuildMenuAndInvController(IZVRPubRepository repo)
 {
     log.Info("Creating instance of UserHaasPreBuildMenuAndInvController ");
     Repo = repo;
 }