コード例 #1
0
		public OrderApiController(IStoreAppRepository repository)
		{
			this.repository = repository;
		}
コード例 #2
0
		public OrderApiController()
		{
			repository = new AdventureWorksEfRepository();
		}
コード例 #3
0
		public ProductsCategoiesApiController(IStoreAppRepository repository)
		{
			this.repository = repository;
		}
コード例 #4
0
		public ProductsCategoiesApiController()
		{
			repository = new AdventureWorksEfRepository();
		}
コード例 #5
0
		public AccountController(ApplicationUserManager userManager)
		{
			UserManager = userManager;
			repository = new AdventureWorksEfRepository();
		}
コード例 #6
0
		public AccountController()
		{
			repository = new AdventureWorksEfRepository();
		}