Fix crooked commit

This commit is contained in:
Safgerd 2023-04-05 19:16:26 +04:00
parent c3f77f6bad
commit 81eba38ae9
4 changed files with 20 additions and 5 deletions

View File

@ -6,7 +6,11 @@ using System.Threading.Tasks;
namespace ComputerStoreDataModels.Models
{
internal interface IConsignmentModel
public interface IConsignmentModel
{
int OrderID { get; }
int ProductID { get; }
double Price { get; }
int Count { get; }
}
}

View File

@ -6,7 +6,10 @@ using System.Threading.Tasks;
namespace ComputerStoreDataModels.Models
{
internal interface IOrderModel
public interface IOrderModel : IID
{
double Price { get; }
DateTime Date { get; }
int UserID { get; }
}
}

View File

@ -6,7 +6,11 @@ using System.Threading.Tasks;
namespace ComputerStoreDataModels.Models
{
internal class IRequestModel
public interface IRequestModel
{
int OrderID { get; }
int PCID { get; }
double Price { get; }
int Count { get; }
}
}

View File

@ -6,8 +6,12 @@ using System.Threading.Tasks;
namespace ComputerStoreDataModels.Models
{
public class IUserModel : IID
public interface IUserModel : IID
{
string Username { get; }
string Password { get; }
string FirstName { get; }
string LastName { get; }
string MiddleName { get; }
}
}