//View detail book by book ID
        public JsonResult Detail(int id)
        {
            using (var db = new BookManagementEntities())
            {
                var model = db.Books.Where(book => book.BookID == id).Join(db.Categories, b => b.CategoryID, c => c.CategoryID, (b, c) => new { b, c }).

                            Join(db.Authors, bo => bo.b.AuthorID, au => au.AuthorID, (bo, au) => new { bo, au }).
                            Join(db.Publishers, bop => bop.bo.b.PublisherID, p => p.PublisherID, (bop, p) => new BookViewModel
                {
                    BookID        = bop.bo.b.BookID,
                    Title         = bop.bo.b.Title,
                    CategoryName  = bop.bo.c.CategoryName,
                    Description   = bop.bo.b.Description,
                    CreatedDate   = bop.bo.b.CreatedDate,
                    ModifiedDate  = bop.bo.b.ModifiedDate,
                    ISBN          = bop.bo.b.ISBN,
                    PublisherName = p.PublisherName,
                    AuthorName    = bop.au.AuthorName,
                    Quantity      = bop.bo.b.Quantity,
                    Price         = bop.bo.b.Price,
                    Picture       = bop.bo.b.Picture,
                }).FirstOrDefault();
                model.CreatedDate  = model.CreatedDate.Date;
                model.ModifiedDate = model.ModifiedDate.Date;
                var serializer = new JavaScriptSerializer();
                serializer.MaxJsonLength = Int32.MaxValue;
                return(Json(model, JsonRequestBehavior.AllowGet));
            }
        }
Beispiel #2
0
 public int CheckAccount(string accountName, string password)
 {
     using (var db = new BookManagementEntities())
     {
         var account = db.Accounts.Where(m => m.AccountName == accountName && m.Password == password).FirstOrDefault();
         if (null != account)
         {
             if (account.IsActive)
             {
                 return(account.AccountID); //account actived - get account id
             }
             else
             {
                 return(-1); // account locked
             }
         }
         else if (null != db.Accounts.Where(m => m.AccountName == accountName || m.Password == password).SingleOrDefault())
         {
             return(-2); //username or password not true
         }
         else
         {
             return(0); //account not exist
         }
     }
 }
 public void UpdateOrderStatus(int orderID, int idStatus)
 {
     using (var db = new BookManagementEntities())
     {
         using (var dbContextTransaction = db.Database.BeginTransaction())
         {
             try
             {
                 var order = db.Orders.Where(s => s.OrderID == orderID).FirstOrDefault();
                 if (idStatus == 1)
                 {
                     order.OrderStatusID = 2;
                     order.ModifiredDate = DateTime.Now;
                 }
                 else
                 {
                     order.OrderStatusID = 3;
                     order.ModifiredDate = DateTime.Now;
                 }
                 db.SaveChanges();
                 dbContextTransaction.Commit();
             }
             catch (Exception)
             {
                 dbContextTransaction.Rollback();
             }
         }
     }
 }
 public void UpdateStatusOrder_Customer(int orderID)
 {
     using (var db = new BookManagementEntities())
     {
         using (var dbContextTransaction = db.Database.BeginTransaction())
         {
             try
             {
                 var order = db.Orders.Where(s => s.OrderID == orderID).FirstOrDefault();
                 order.OrderStatusID   = 4;
                 db.Entry(order).State = EntityState.Modified;
                 db.SaveChanges();
                 var orderDetail = db.OrderDetails.Where(s => s.OrderID == orderID).ToList();
                 foreach (var item in orderDetail)
                 {
                     var book = db.Books.Where(s => s.BookID == item.BookID).FirstOrDefault();
                     book.Quantity += item.Quantity;
                 }
                 db.SaveChanges();
                 dbContextTransaction.Commit();
             }
             catch (Exception ex)
             {
                 Console.WriteLine(ex.Message);
                 dbContextTransaction.Rollback();
             }
         }
     }
 }
 public List <Comment> LoadComment(int id)
 {
     using (var db = new BookManagementEntities())
     {
         var list = db.Comments.Where(s => s.IsActive == true && s.BookID == id).OrderByDescending(s => s.CreatedDate).ToList();
         return(list);
     }
 }
 public int GetQuantityConfirm()
 {
     using (var db = new BookManagementEntities())
     {
         var res = db.Orders.Where(s => s.IsActive == true && (s.OrderStatusID == 1 || s.OrderStatusID == 2)).Count();
         return(res);
     }
 }
Beispiel #7
0
 //Delete comment
 public void DeleteComment(int idComment)
 {
     using (var db = new BookManagementEntities())
     {
         var res = db.Comments.Where(s => s.CommentID == idComment).FirstOrDefault();
         res.IsActive = false;
         db.SaveChanges();
     }
 }
Beispiel #8
0
 // Add Reply
 public void AddReply(string replyContent, int accountID, int idComment)
 {
     using (var db = new BookManagementEntities())
     {
         Reply res = new Reply();
         res.CommentID    = idComment;
         res.AccountID    = accountID;
         res.ReplyContent = replyContent;
         res.ReplyDate    = DateTime.Now;
         db.Replies.Add(res);
         db.SaveChanges();
     }
 }
 public void SendComment(int bookID, string commentContent)
 {
     using (var db = new BookManagementEntities())
     {
         Comment cmt = new Comment();
         cmt.CommentContent = commentContent;
         cmt.CreatedDate    = DateTime.Now;
         cmt.BookID         = bookID;
         cmt.IsActive       = true;
         db.Comments.Add(cmt);
         db.SaveChanges();
     }
 }
 //get order by account id
 public static List <Order> GetOrder(int id)
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             return(db.Orders.Where(m => m.AccountCustomerID == id).Include(m => m.OrderDetails.Select(c => c.Book)).Include(m => m.OrderStatu).OrderByDescending(m => m.ModifiredDate).ToList());
         }
         catch (Exception ex)
         {
             Console.WriteLine(ex.Message);
             return(new List <Order>());
         }
     }
 }
Beispiel #11
0
 //get list publishers which are active
 public static List <Publisher> GetListPublisher()
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             return(db.Publishers.Where(m => m.IsActive).ToList());
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
             return(new List <Publisher>());
         }
     }
 }
        // Send mail nge dai ca
        public JsonResult CancelOrder(int orderID) //
        {
            dao.CancelOrder(orderID);
            string emailCustomer;

            using (BookManagementEntities db = new BookManagementEntities())
            {
                var accountId = db.Orders.Where(m => m.OrderID == orderID).Select(m => m.Account.AccountID).SingleOrDefault();
                emailCustomer = db.Customers.Where(m => m.AccountID == accountId).Select(m => m.CustomerEmail).FirstOrDefault();
            }
            return(Json(new
            {
                status = true,
                email = emailCustomer
            }));
        }
Beispiel #13
0
 public static List <Category> GetAllCategory()
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             var list = db.Categories.ToList();
             return(list);
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
             return(new List <Category>());
         }
     }
 }
 public void CancelOrder(int orderID)
 {
     using (var db = new BookManagementEntities())
     {
         var order = db.Orders.Where(s => s.OrderID == orderID).FirstOrDefault();
         order.OrderStatusID = 4;
         order.ModifiredDate = DateTime.Now;
         var orderDetail = db.OrderDetails.Where(s => s.OrderID == orderID).ToList();
         foreach (var item in orderDetail)
         {
             var book = db.Books.Where(s => s.BookID == item.BookID).FirstOrDefault();
             book.Quantity += item.Quantity;
         }
         db.SaveChanges();
     }
 }
Beispiel #15
0
 public static Author GetAuthor(int id)
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             var a = db.Authors.Where(m => m.AuthorID == id).Include(b => b.Books).FirstOrDefault();
             return(a);
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
             return(null);
         }
     }
 }
Beispiel #16
0
 //find customer by customer id
 public static Customer FindCustomer(int id)
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             var customer = db.Customers.Include(m => m.Account).FirstOrDefault(m => m.CustomerID == id);
             return(customer);
         }
         catch (Exception ex)
         {
             Console.WriteLine(ex.Message);
             return(null);
         }
     }
 }
 //Get book by book id
 public static Book GetBook(int id)
 {
     using (var db = new BookManagementEntities())
     {
         Book book = null;
         try
         {
             book = db.Books.Include(m => m.Category).Include(m => m.Publisher).Include(m => m.Author).FirstOrDefault(b => b.BookID == id);
             return(book);
         }
         catch (Exception ex)
         {
             Console.WriteLine(ex.Message);
             return(null);
         }
     }
 }
 public IEnumerable <OrderDetailBookModel> LoadOrderDetail(int orderID)
 {
     using (var db = new BookManagementEntities())
     {
         var list = (from a in db.OrderDetails
                     join b in db.Books
                     on a.BookID equals b.BookID
                     where a.IsActive == true && a.OrderID == orderID
                     select new OrderDetailBookModel
         {
             BookName = b.Title,
             Quantity = a.Quantity,
             Money = a.Money
         }).ToList();
         return(list);
     }
 }
 //create or edit book
 public static int CreateOrEditBook(Book book)
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             db.Entry(book).State = book.BookID > 0? EntityState.Modified:EntityState.Added;
             int ret = db.SaveChanges();
             return(ret);
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
             return(0);
         }
     }
 }
 //get list books which are active
 public static List <Book> GetListBooks()
 {
     using (var db = new BookManagementEntities())
     {
         List <Book> list = new List <Book>();
         try
         {
             list = db.Books.Include(m => m.Author).Include(m => m.Category).Include(m => m.Publisher).Where(m => m.IsActive).ToList();
             return(list);
         }
         catch (Exception ex)
         {
             Console.WriteLine(ex.Message);
             return(new List <Book>());
         }
     }
 }
 public OrderDetailCustomer GetInfoCustomer(int orderID)
 {
     using (var db = new BookManagementEntities())
     {
         var customer = (from a in db.Orders
                         join b in db.Customers
                         on a.AccountCustomerID equals b.AccountID
                         where a.OrderID == orderID
                         select new OrderDetailCustomer
         {
             CustomerName = b.CustomerName,
             Email = b.CustomerEmail,
             Phone = a.PhoneNumber,
             Address = a.OrderAddress
         }).SingleOrDefault();
         return(customer);
     }
 }
Beispiel #22
0
 // Load data Reply
 public IEnumerable <ReplyAccount> LoadReply(int idcomment)
 {
     using (var db = new BookManagementEntities())
     {
         var list = (from a in db.Replies
                     join b in db.Accounts
                     on a.AccountID equals b.AccountID
                     where a.CommentID == idcomment
                     orderby a.ReplyDate descending
                     select new ReplyAccount
         {
             AccountName = b.AccountName,
             ReplyContent = a.ReplyContent,
             ReplyDate = a.ReplyDate
         }).ToList();
         return(list);
     }
 }
 public List <ReplyAccount> LoadReply()
 {
     using (var db = new BookManagementEntities())
     {
         var list = (from a in db.Replies
                     join b in db.Accounts
                     on a.AccountID equals b.AccountID
                     orderby a.ReplyDate descending
                     select new ReplyAccount
         {
             AccountName = b.AccountName,
             CommentID = a.CommentID,
             ReplyDate = a.ReplyDate,
             ReplyContent = a.ReplyContent
         }).ToList();
         return(list);
     }
 }
Beispiel #24
0
 public static int Delete(int id)
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             var author = db.Authors.FirstOrDefault(m => m.AuthorID == id);
             author.IsActive        = false;
             db.Entry(author).State = EntityState.Modified;
             int ret = db.SaveChanges();
             return(ret);
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
             return(0);
         }
     }
 }
Beispiel #25
0
 // Load data comment
 public IEnumerable <CommentBookModels> Load()
 {
     using (var db = new BookManagementEntities())
     {
         var list = (from a in db.Comments
                     join b in db.Books
                     on a.BookID equals b.BookID
                     where a.IsActive == true
                     orderby a.CreatedDate descending
                     select new CommentBookModels
         {
             Title = b.Title,
             Content = a.CommentContent,
             CreatedDate = a.CreatedDate,
             CommentID = a.CommentID,
             BookID = b.BookID
         }).ToList();
         return(list);
     }
 }
 //delete book by book ID
 public static bool DeleteBook(int id)
 {
     using (var db = new BookManagementEntities())
     {
         try
         {
             //check this book exist in order
             if (db.OrderDetails.FirstOrDefault(d => d.BookID == id) == null)
             {
                 return(false);
             }
             Book book = db.Books.FirstOrDefault(m => m.BookID == id);
             book.IsActive        = false;
             db.Entry(book).State = EntityState.Modified;
             db.SaveChanges();
             return(true);
         }
         catch (Exception e)
         {
             Console.WriteLine(e.Message);
             return(false);
         }
     }
 }
        //public void CreateOrder()
        //{

        //    //var currentCustomer = (CurrentCustomer)Session[CommonBox.SessionBox.CUSTOMER_SESSION];
        //    //customerID = currentCustomer.GetCustomerID();
        //    using (var db = new BookManagementEntities())
        //    {
        //        using (var dbContextTransaction = db.Database.BeginTransaction())
        //        {
        //            try
        //            {
        //                int customerID = 0;
        //                Order order = new Order();
        //                order.AccountCustomerID = customerID;
        //                order.OrderDate = DateTime.Now;
        //                order.TotalMoney = 0;
        //                order.ModifiredDate = DateTime.Now;
        //                order.OrderStatusID = 1;
        //                order.IsActive = true;
        //                db.Orders.Add(order);
        //                db.SaveChanges();
        //            }
        //            catch (Exception)
        //            {
        //                dbContextTransaction.Rollback();
        //            }
        //        }
        //    }
        //}
        //public void CreateOrder_Detail(int bookID, int quantity)
        //{
        //    using (var db = new BookManagementEntities())
        //    using (var dbContextTransaction = db.Database.BeginTransaction())
        //    {
        //        try
        //        {
        //            OrderDetail orderDetail = new OrderDetail();
        //            var order = db.Orders.Where(s => s.IsActive == true).OrderByDescending(s => s.OrderID).FirstOrDefault(); // info of order
        //            var detailBook = db.Books.Where(s => s.BookID == bookID && s.IsActive == true).FirstOrDefault(); // info of book
        //            var money = detailBook.Price * quantity; // money
        //            orderDetail.OrderID = Convert.ToInt32(order.OrderID);
        //            orderDetail.BookID = bookID;
        //            orderDetail.Quantity = quantity;
        //            orderDetail.Money = money;
        //            orderDetail.IsActive = true;
        //            db.OrderDetails.Add(orderDetail);
        //            db.SaveChanges();
        //            detailBook.Quantity -= quantity; // update quantity of book after add orderDetail
        //            order.TotalMoney += money;  //upadte total money of Order after add orderDetail
        //            db.SaveChanges();
        //        }
        //        catch (Exception)
        //        {
        //            dbContextTransaction.Rollback();
        //        }
        //    }
        //}
        public IEnumerable <OrderAccountModel> LoadOrder()
        {
            using (var db = new BookManagementEntities())
            {
                var list = (from a in db.Orders
                            join b in db.Accounts
                            on a.AccountCustomerID equals b.AccountID
                            join c in db.OrderStatus on a.OrderStatusID equals c.OrderStatusID
                            where a.IsActive == true
                            orderby a.OrderDate descending
                            select new OrderAccountModel
                {
                    OrderID = a.OrderID,
                    OrderStatusID = c.OrderStatusID,
                    AccountCustomerName = b.AccountName,
                    OrderStatusName = c.OrderStatusName,
                    OrderDate = a.OrderDate,
                    ModifiedDate = a.ModifiredDate,
                    TotalMoney = a.TotalMoney
                });

                return(list.ToList());
            }
        }
Beispiel #28
0
 public GenresDAO()
 {
     _db = new BookManagementEntities();
 }
Beispiel #29
0
 public UserDAO()
 {
     _db = new BookManagementEntities();
 }
Beispiel #30
0
 public BookStatusDAO()
 {
     _db = new BookManagementEntities();
 }