21 lines
391 B
C#
21 lines
391 B
C#
using SchoolContracts.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchoolContracts.BindingModels
|
|
{
|
|
public class PaymentBindingModel: IPaymentModel
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public DateTime DatePayment { get; }
|
|
|
|
public decimal Sum { get; }
|
|
|
|
public int CoursesForStudyId { get; }
|
|
}
|
|
}
|