WebAPI Project - .NET

1

I'm developing an Asp.Net WebApi application (first REST application).

So far everything is ok, even though I'm in the testing phase using PostMan. I think I should finish this first step in two weeks.

The project has the Service, Domain, Infra, WebApi, Validation and Dependency Injection layers, all separated by projects within the same solution.

The next step is to develop the "Layer" that will serve as View to users.

I should use AngularJs2 .

Now comes my doubt.

For this layer should I create a new project? if yes, what kind of Views are HTML pages?

The entire project will be hosted on the same server. I hope I was clear with my doubt :) Flávio Oliveira

    
asked by anonymous 26.07.2016 / 05:47

1 answer

3
  

For this layer should I create a new project?

Not necessarily. For example, in a similar project I have a structure where I store my ORM classes in a folder named model , my API endpoints in controllers and the Angular content in frontend :

The decision to create a separate project may simply be of an organizational nature.

    
26.07.2016 / 14:19