- generates a template based on the client infos.
- [ServiceCustomer] : deals with Customer Table Operations (CRUD)
- [TemplateService] : deals with Template Table Operations (CRUD)
- [BackEndService] : OverAll library exposing preferred Node
- [FormHostingApp] : Console APp to start the Server.
- Postgresql 13
- Dotnet6
- dotnetframework 4.8
[ServiceCustomer] and [TemplateService] provide a app.config file where the connection string is provided. Make sure to change it :
<connectionStrings>
<add name="PostgresqlDBContext" connectionString="host=localhost;port=5432;database=TestServices;user id=postgres;password=1" providerName="Npgsql" />
</connectionStrings>```