2024-04-28 20:39:06 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
namespace BankDataModels
|
|
|
|
|
{
|
2024-04-28 19:47:39 +04:00
|
|
|
|
public interface IEmployeeModel : IClientModel
|
2024-04-28 20:39:06 +04:00
|
|
|
|
{
|
2024-04-28 19:47:39 +04:00
|
|
|
|
string Post { get; }
|
2024-04-28 20:39:06 +04:00
|
|
|
|
}
|
|
|
|
|
}
|