Убрал Date

This commit is contained in:
Bulat 2024-12-19 20:14:02 +04:00
parent 911e9f8393
commit a30b24aaa1

View File

@ -24,8 +24,8 @@ public class DoctorPayments
public int Count_Patient { get; private set; } public int Count_Patient { get; private set; }
[DisplayName("Дата оплаты")] //[DisplayName("Дата оплаты")]
public DateTime DoctorPaymentData { get; private set; } //public DateTime DoctorPaymentData { get; private set; }
[DisplayName("Оплата")] [DisplayName("Оплата")]
public int Payment { get; private set; } public int Payment { get; private set; }
@ -37,7 +37,7 @@ public class DoctorPayments
IdDoctor = idDoctor, IdDoctor = idDoctor,
Month = month, Month = month,
Count_Patient = count_patient, Count_Patient = count_patient,
DoctorPaymentData = DateTime.Now, // DoctorPaymentData = DateTime.Now,
Payment = payment Payment = payment
}; };
} }