using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BookShopSys.Plus.Models
{
public class BasketBook
{
public int Id { get; set; }
public int bookId { get; set; }
public double unitPrice { get; set; }
public double dzPrice { get; set; }
public double jsPrice { get; set; }
public double dprice { get; set; }
public string title { get; set; }
public int Sum { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BookShopSys.Plus.Models
{
public class Book
{
public int Id { get; set; }
public string Title { get; set; }
public string Author { get; set; }
public int PublisherId { get; set; }
public DateTime PublishDate { get; set; }
public string ISBN { get; set; }
public double UnitPrice { get; set; }
public string ContentDescription { get; set; }
public string TOC { get; set; }
public int CategoryId { get; set; }
public int Clicks { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BookShopSys.Plus.Models
{
public class Categroy
{
public int Id { get; set; }
public string Name { get; set; }
public int PId { get; set; }
public int BookSum { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace BookShopSys.Plus.Models
{
public class ReaderComment
{
public int Id { get; set; }
public int BookId { get; set; }
public string ReaderName { get; set; }
public string Title { get; set; }
public string Comment { get; set; }
public DateTime Date { get; set; }
}
}