seperated out start and end date and time into seprate date and time fields

This commit is contained in:
2026-07-25 15:59:46 -05:00
parent 5517924259
commit 1b478cd7ba
7 changed files with 712 additions and 6 deletions
+5 -2
View File
@@ -1,3 +1,4 @@
using System.Runtime.InteropServices.JavaScript;
using Microsoft.EntityFrameworkCore;
namespace barkmanapi;
@@ -53,8 +54,10 @@ public class Jobs
public required string Name { get; set; }
public JobStatus Status { get; set; }
public string? StatusId { get; set; }
public DateTimeOffset StartDate { get; set; }
public DateTimeOffset EndDate { get; set; }
public DateOnly StartDate { get; set; }
public DateOnly EndDate { get; set; }
public TimeOnly StartTime { get; set; }
public TimeOnly EndTime { get; set; }
public decimal TotalPrice { get; set; }
public string? Venue { get; set; }
public string? Address { get; set; }