Commit 529a29ab authored by Michal Bilanin's avatar Michal Bilanin 🙄
Browse files

Merge branch 'feat/iamge-upload' into 'master'

Feat/iamge upload

See merge request !36
parents 099f0dd5 14043119
Loading
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
namespace BusinessLayer;

public static class BusinessConstants
{
    public static string WebRootPath { get; set; }
}
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
public class GiftCardCreateDto
{
    public int Discount { get; set; }
    public string Name { get; set; }
    public string Name { get; set; } = "";
    public int CouponsCount { get; set; }
    public DateTime? StartDateTime { get; set; }
    public DateTime? ExpiryDateTime { get; set; }
+0 −1
Original line number Diff line number Diff line
@@ -2,6 +2,5 @@

public class GiftCardDetailDto : GiftCardViewDto
{
    public int Id { get; set; }
    public List<CouponCodeDto> CouponCodes { get; set; } = [];
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
public class GiftCardEditDto
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Name { get; set; } = "";
    public int Discount { get; set; }
    public int CouponsCount { get; set; }
    public DateTime? StartDateTime { get; set; }
+1 −1
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@
public class GiftCardViewDto
{
    public int Id { get; set; }
    public string Name { get; set; }
    public string Name { get; set; } = "";
    public int Discount { get; set; }
    public int CouponsCount { get; set; }
    public DateTime? StartDateTime { get; set; }
Loading