Fix crooked commit
This commit is contained in:
parent
c3f77f6bad
commit
81eba38ae9
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
@ -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; }
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user