コード例 #1
0
        public ActionResult ViewMonth(int month = 0)
        {
            var dates = DateAndTime.GetMonthStartEnd2(month);

            var data = LoadMonth(dates[0], dates[1]);

            List <Models.InvoiceModel> invoices = new List <Models.InvoiceModel>();

            foreach (var row in data)
            {
                invoices.Add(new Models.InvoiceModel
                {
                    Id          = row.Id,
                    InvoiceId   = row.InvoiceId,
                    Description = row.Description,
                    CreatedAt   = row.CreatedAt,
                    UpdatedAt   = row.UpdatedAt,
                    Value       = row.Value,
                    Date        = row.Date
                });
            }



            return(View(invoices));
        }