feat: Created EF Core data migrations

This commit is contained in:
Developer 02
2024-08-05 12:11:21 +02:00
parent 3f6fda1ac5
commit d01a3b955b
4 changed files with 2933 additions and 1 deletions

View File

@@ -11,7 +11,6 @@ using System.Threading.Tasks;
namespace StaffDBServer.Controllers
{
[JWTAuthorize]
public class EmployeeController : BaseController<Employee>
{
public EmployeeController(IBaseRepository<Employee> repositoryBase) : base(repositoryBase)