I am working thru the following document: https://aspnetzero.com/Documents/Developing-Step-By-Step-Angular#source-code I am at the point of: Application service interface and DTOs are located in .Application.Shared project.
It is not clear the name of these files or the exact location (this directory or a sub-directory named ???)
I am hopeful there is a solution set to see the final outcome of the sample to compare for exactly these kinds of questions.
Thanks
Sory for the confusion I needed to add myself to the private github area via the licensing screen on <a class="postlink" href="https://aspnetzero.com/LicenseManagement">https://aspnetzero.com/LicenseManagement</a>. Got it now!! Thanks
Hello, I am new to the forum after purchasing my first license to ASP.NET ZERO. For some reason I cannot search the forum for the topics that interest me? I am able to post reply's to existing post or even create a post as I am doing right now.
@aaron - yes I tried that but I get a 404 not found
<a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-samples/tree/master/PhoneBook-Angular">https://github.com/aspnetzero/aspnet-ze ... ok-Angular</a>
Hello, I found this post while researching where to add the
using Abp.Application.Services;
using Abp.Application.Services.Dto;
namespace Acme.PhoneBookDemo.PhoneBook
{
public interface IPersonAppService : IApplicationService
{
ListResultDto<PersonListDto> GetPeople(GetPeopleInput input);
}
}
It had a reference to the samples on GIThub: aspnet-zero-samples/PhoneBook-Angular project on github
@aaron is there a completed solution to track where I may go wrong on this demo?