コード例 #1
0
        public transactionClass getOrder(int orderNumber)
        {
            var order = (from i in db.OOrders
                         where i.OrderNumber.Equals(orderNumber)
                         select i).FirstOrDefault();

            if (order != null)
            {
                transactionClass Order = new transactionClass
                {
                    clientId       = order.Client_ID,
                    OrderId        = order.Order_Id,
                    PaymentId      = order.Payment_Id,
                    DeliveryID     = order.Delivery_Id,
                    OrderNumber    = order.OrderNumber,
                    OrderDate      = order.OrderDate,
                    ShipDate       = order.ShipDate,
                    tax            = Convert.ToDouble(order.Tax),
                    DeliveryStatus = order.Delivery_Status,
                    PayemntStatus  = order.Payment_Status,
                    PaymentDate    = order.Payment_Date
                };
                return(Order);
            }
            else
            {
                return(null);
            }
        }
コード例 #2
0
        public bool addToOrder(transactionClass trans)
        {
            OOrder order = new OOrder
            {
                Client_ID       = trans.clientId,
                Payment_Id      = trans.PaymentId,
                Delivery_Id     = trans.DeliveryID,
                OrderNumber     = trans.OrderNumber,
                OrderDate       = trans.OrderDate,
                ShipDate        = trans.ShipDate,
                Tax             = Convert.ToDecimal(trans.tax),
                Delivery_Status = trans.DeliveryStatus,
                Payment_Status  = trans.PayemntStatus,
                Payment_Date    = trans.PaymentDate
            };

            db.OOrders.InsertOnSubmit(order);
            try
            {
                db.SubmitChanges();
                return(true);
            }catch (Exception ex)
            {
                ex.GetBaseException();
                return(false);
            }
        }
コード例 #3
0
        public List <transactionClass> getInvoice(int userId)
        {
            var inv = (from i in db.Invoices
                       where i.userID.Equals(userId)
                       select i);

            List <transactionClass> list = new List <transactionClass>();

            if (inv != null)
            {
                foreach (Invoice c in inv)
                {
                    transactionClass Invoice = new transactionClass
                    {
                        ProId = c.Product_Id,

                        clientId    = c.userID,
                        OrderId     = c.Order_Id,
                        OrderNumber = c.OrderNumber,
                        Quantity    = c.Quantity,
                        price       = c.Price,
                        Total       = c.Total,
                        ShipDate    = c.ShipDate,
                        PaymentDate = c.Payment_Date
                    };
                    list.Add(Invoice);
                }
                return(list);
            }
            else
            {
                return(null);
            }
        }
コード例 #4
0
        public bool addToInvoice(transactionClass trans)
        {
            Invoice inv = new Invoice
            {
                Product_Id   = trans.ProId,
                userID       = trans.clientId,
                Order_Id     = trans.OrderId,
                OrderNumber  = trans.OrderNumber,
                Quantity     = trans.Quantity,
                Price        = trans.price,
                Total        = trans.Total,
                ShipDate     = trans.ShipDate,
                Payment_Date = trans.PaymentDate
            };

            db.Invoices.InsertOnSubmit(inv);
            try
            {
                db.SubmitChanges();
                return(true);
            }catch (Exception ex)
            {
                ex.GetBaseException();
                return(false);
            }
        }
コード例 #5
0
        public bool delivery(transactionClass trans)
        {
            Delivery del = new Delivery
            {
                Company_Name    = trans.companyName,
                Phone           = trans.phone,
                Company_Details = trans.CompanyDetails
            };

            db.Deliveries.InsertOnSubmit(del);
            try
            {
                db.SubmitChanges();
                return(true);
            }catch (Exception ex)
            {
                ex.GetBaseException();
                return(false);
            }
        }
コード例 #6
0
        public bool payment(transactionClass trans)
        {
            Payment pay = new Payment
            {
                User_Id      = trans.clientId,
                Payment_Type = trans.Payementtype,
                Payment_Date = trans.PaymentDate,
                Amount       = trans.price
            };

            db.Payments.InsertOnSubmit(pay);
            try
            {
                db.SubmitChanges();
                return(true);
            }catch (Exception ex)
            {
                ex.GetBaseException();
                return(false);
            }
        }
コード例 #7
0
        public transactionClass getDelivertDetails(String Companyname)
        {
            var del = (from d in db.Deliveries
                       where d.Company_Name.Equals(Companyname)
                       select d).FirstOrDefault();

            if (del != null)
            {
                transactionClass delivery = new transactionClass
                {
                    companyName    = del.Company_Name,
                    phone          = del.Phone,
                    CompanyDetails = del.Company_Details,
                    DeliveryID     = del.Delivery_Id
                };
                return(delivery);
            }
            else
            {
                return(null);
            }
        }
コード例 #8
0
        public transactionClass getpayement(int userId)
        {
            var pay = (from p in db.Payments
                       where p.User_Id.Equals(userId)
                       select p).FirstOrDefault();

            if (pay != null)
            {
                transactionClass payement = new transactionClass
                {
                    clientId     = pay.User_Id,
                    PaymentId    = pay.Payment_Id,
                    Payementtype = pay.Payment_Type,
                    PaymentDate  = pay.Payment_Date,
                    Total        = pay.Amount
                };
                return(payement);
            }
            else
            {
                return(null);
            }
        }