26 lines
601 B
C#
26 lines
601 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.EmployeeBankInformation
|
|
{
|
|
public class CreateEmployeeInformation
|
|
{
|
|
public long EmployeeId { get; set; }
|
|
public string EmployeeName { get; set; }
|
|
public long WorkshopId { get; set; }
|
|
public long BankId { get; set; }
|
|
|
|
//شماره حساب
|
|
public string BankAccountNumber { get; set; }
|
|
|
|
//شماره کارت
|
|
public string CardNumber { get; set; }
|
|
|
|
//شماره شبا
|
|
public string ShebaNumber { get; set; }
|
|
}
|
|
}
|