Exemplo n.º 1
0
 public ProductsRepository(NeighborsContext neighborsContext, ICategoriesRepository catRepo, SignInManager <User> signinManager, IMLEngine ml)
 {
     _context       = neighborsContext;
     _catRepo       = catRepo;
     _signinManager = signinManager;
     _ml            = ml;
 }
Exemplo n.º 2
0
 public BorrowsRepository(NeighborsContext neighborsContext, IProductsRepository proRepo, SignInManager <User> signinManager, UserManager <User> userManager)
 {
     _context       = neighborsContext;
     _userManager   = userManager;
     _proRepo       = proRepo;
     _signinManager = signinManager;
 }
Exemplo n.º 3
0
 public BranchesController(NeighborsContext context)
 {
     _context = context;
 }
Exemplo n.º 4
0
 public CategoriesRepository(NeighborsContext neighborsContext)
 {
     _context = neighborsContext;
 }
Exemplo n.º 5
0
        //private static readonly TextLoader _productLoader;

        public ClusterEngine(NeighborsContext context)
        {
            _context = context;
        }
Exemplo n.º 6
0
 public HomeController(NeighborsContext context)
 {
     _context = context;
 }