| | | 1 | | using System; |
| | | 2 | | using System.Collections.Generic; |
| | | 3 | | using System.Text; |
| | | 4 | | using System.ComponentModel.DataAnnotations; |
| | | 5 | | |
| | | 6 | | namespace WinSolutions.Sveta.Server.Data.DataModel.Entities |
| | | 7 | | { |
| | | 8 | | /// <summary> |
| | | 9 | | /// Банковский счет |
| | | 10 | | /// </summary> |
| | | 11 | | public class BankAccount : ExternalRecord, ITrackableRecord |
| | | 12 | | { |
| | 0 | 13 | | public Contragent Contragent { get; set; } |
| | | 14 | | |
| | | 15 | | /// <summary> |
| | | 16 | | /// БИК банка |
| | | 17 | | /// </summary> |
| | | 18 | | [Required] |
| | 27 | 19 | | public string Bik { get; set; } |
| | | 20 | | |
| | | 21 | | /// <summary> |
| | | 22 | | /// Расчетный счет (Р/С) |
| | | 23 | | /// </summary> |
| | | 24 | | [Required] |
| | 27 | 25 | | public string SettlementAccount { get; set; } |
| | | 26 | | |
| | | 27 | | /// <summary> |
| | | 28 | | /// Наименование банка |
| | | 29 | | /// </summary> |
| | | 30 | | [Required] |
| | 16 | 31 | | public string BankName { get; set; } |
| | | 32 | | |
| | | 33 | | /// <summary> |
| | | 34 | | /// Корреспондендский счет (К/С) |
| | | 35 | | /// </summary> |
| | | 36 | | [Required] |
| | 14 | 37 | | public string CorrespondentAccount { get; set; } |
| | | 38 | | } |
| | | 39 | | } |