Exemplo n.º 1
0
		public OrderApiController(IStoreAppRepository repository)
		{
			this.repository = repository;
		}
Exemplo n.º 2
0
		public OrderApiController()
		{
			repository = new AdventureWorksEfRepository();
		}
		public ProductsCategoiesApiController(IStoreAppRepository repository)
		{
			this.repository = repository;
		}
		public ProductsCategoiesApiController()
		{
			repository = new AdventureWorksEfRepository();
		}
Exemplo n.º 5
0
		public AccountController(ApplicationUserManager userManager)
		{
			UserManager = userManager;
			repository = new AdventureWorksEfRepository();
		}
Exemplo n.º 6
0
		public AccountController()
		{
			repository = new AdventureWorksEfRepository();
		}