колобок повесился :))))))))))
This commit is contained in:
parent
40356414cd
commit
8154f3e76d
Bank/BankDataModels
@ -6,7 +6,9 @@ using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels.HelperInterfaces
|
||||
{
|
||||
internal class Id
|
||||
public interface IId
|
||||
{
|
||||
int Id { get; }
|
||||
}
|
||||
}
|
||||
|
@ -3,10 +3,16 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using BankDataModels.HelperInterfaces;
|
||||
using BankDataModels.ProxyModels;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class ICostModel
|
||||
public interface ICostModel : IId
|
||||
{
|
||||
int EmployeeId { get; }
|
||||
string NameOfCost { get; }
|
||||
double Price { get; }
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -3,10 +3,10 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IEmployeeModel
|
||||
public interface IEmployeeModel : IClientModel
|
||||
{
|
||||
string Post { get; }
|
||||
}
|
||||
}
|
||||
|
@ -3,10 +3,15 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using BankDataModels.HelperInterfaces;
|
||||
|
||||
namespace BankDataModels
|
||||
{
|
||||
internal class IOperationModel
|
||||
public interface IOperationModel : IId
|
||||
{
|
||||
int EmployeeId { get; }
|
||||
string Model { get; }
|
||||
string Mark { get; }
|
||||
double Price { get; }
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user