CourseWork_Bank/Bank/BankDataModels/Models/IDealModel.cs

17 lines
336 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankDataModels.Models
{
public interface IDealModel : IId
{
int ClientId { get; }
DateTime Date { get; }
int OperatorId { get; }
int CreditProgramId { get; }
}
}