25 lines
488 B
C#
25 lines
488 B
C#
|
using BankDataModels.Models;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankContracts.BindingModels
|
|||
|
{
|
|||
|
public class CashWithdrawalBindingModel: ICashWithdrawalModel
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int CashierId { get; set; }
|
|||
|
|
|||
|
public int DebitingId { get; set; }
|
|||
|
|
|||
|
public int AccountId { get; set; }
|
|||
|
|
|||
|
public double Sum { get; set; }
|
|||
|
|
|||
|
public DateTime DateWithdrawal { get; set; }
|
|||
|
}
|
|||
|
}
|