C# .Net Code Generator designed to generate the following assets based on a C# Interface:
* SQL Server 2016 Stored Procedures for CRUD activiity
* Repository code for converting raw JSON to concrete implementations of C# Interface
* Model code which is the concrete implementation of C# Interface
* Business Library allowing for business rules to be applied to data in concrete implementation of C# Interface
* Stubbed WebApi endpoints
C# .Net Code Generator allows you to spend your time in the following areas:
* crafting stored procedures to surface database data matching the data needs imposed by a C# Interface
* crafting your business rules in a single location
* crafting WebApi endpoints (you can use code generated samples as a starting point)
* crafting your front-end experience
C# .Net Code Generator requires the following projects in .Net Solution:
* Business Library (housing business rules applied to data in concrete implementaitons of C# Interfaces)
* Data Contracts (housing C# Interfaces)
* Models (housing concrete implementaitons of C# Interfaces)
* Repository (housing calls to database and translation to concrete implementaitons of C# Interfaces)
* WebAPI (housing API controllers)
Utilizing this code generator increases your productivity and produces consistent, reliable results