Exemplo n.º 1
0
 public BrandController(FarmboekContext T)
 {
     brandRepository = new BrandRepository(T);
 }
Exemplo n.º 2
0
 public ProductAndServicesController(FarmboekContext T)
 {
     productsAndServicesRepository = new ProductAndServicesRepository(T);
 }
Exemplo n.º 3
0
 public DummyController(UserManager <User> userMgr, FarmboekContext T)
 {
     _userMgr        = userMgr;
     dummyRepository = new DummyRepository(T);
 }
Exemplo n.º 4
0
 public BrandRepository(FarmboekContext context)
 {
     dc = context;
 }
Exemplo n.º 5
0
 public ProblemAndSolutionRepository(FarmboekContext context)
 {
     dc = context;
 }
Exemplo n.º 6
0
 public SocialMediaController(FarmboekContext T, IHostingEnvironment env)
 {
     socialMediaRepository = new SocialMediaRepository(T);
     _env = env;
 }
Exemplo n.º 7
0
 public RemediesRepository(FarmboekContext context)
 {
     dc = context;
 }
 public ProblemAndSolutionController(FarmboekContext T)
 {
     problemAndSolutionRepository = new ProblemAndSolutionRepository(T);
 }
Exemplo n.º 9
0
 public SupplierRepository(FarmboekContext context)
 {
     dc = context;
 }
Exemplo n.º 10
0
 public RemediesController(FarmboekContext T)
 {
     remediesRepository = new RemediesRepository(T);
 }
Exemplo n.º 11
0
 public DummyRepository(FarmboekContext context)
 {
     dc = context;
 }
Exemplo n.º 12
0
 public SupplierController(FarmboekContext T)
 {
     supplierRepository = new SupplierRepository(T);
 }
Exemplo n.º 13
0
 public TokenController(UserManager <User> userMgr, IPasswordHasher <User> hasher, IConfiguration config, FarmboekContext T)
 {
     _userMgr = userMgr;
     _hasher  = hasher;
     _config  = config;
     communicationRepository = new CommunicationRepository(T);
 }
 public ProductAndServicesRepository(FarmboekContext context)
 {
     dc = context;
 }
Exemplo n.º 15
0
 public CommunicationRepository(FarmboekContext context)
 {
     dc = context;
 }