2020-04-28 08:16:41 +00:00
|
|
|
namespace Bücherwurm
|
|
|
|
{
|
|
|
|
public interface IProduct
|
|
|
|
{
|
|
|
|
int ProductId {get; set;}
|
|
|
|
|
|
|
|
string Category {get; set; }
|
|
|
|
|
2020-04-28 08:54:22 +00:00
|
|
|
int LendTime {get; set;}
|
|
|
|
|
2020-04-28 13:11:31 +00:00
|
|
|
string Name {get; set;}
|
|
|
|
|
2020-04-28 08:16:41 +00:00
|
|
|
void OverwriteNullId(int id);
|
|
|
|
}
|
|
|
|
}
|