コード例 #1
0
ファイル: MainForm.cs プロジェクト: JenekX/ZpProject
        private PaymentPeriod GetPeriod(DataClassesDataContext context)
        {
            var result = context.PaymentPeriods.FirstOrDefault(x => x.Year == ShowYear && x.Month == ShowMonth);

            if (result == null)
            {
                result = new PaymentPeriod {
                    Year = ShowYear, Month = ShowMonth
                };
                context.PaymentPeriods.InsertOnSubmit(result);
                context.SubmitChanges();
            }

            return(result);
        }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: JenekX/ZpProject
        private PaymentPeriod GetPeriod(DataClassesDataContext context)
        {
            var result = context.PaymentPeriods.FirstOrDefault(x => x.Year == ShowYear && x.Month == ShowMonth);
            if (result == null)
            {
                result = new PaymentPeriod { Year = ShowYear, Month = ShowMonth };
                context.PaymentPeriods.InsertOnSubmit(result);
                context.SubmitChanges();
            }

            return result;
        }
コード例 #3
0
 partial void DeletePaymentPeriod(PaymentPeriod instance);
コード例 #4
0
 partial void UpdatePaymentPeriod(PaymentPeriod instance);
コード例 #5
0
 partial void InsertPaymentPeriod(PaymentPeriod instance);
コード例 #6
0
 partial void DeletePaymentPeriod(PaymentPeriod instance);
コード例 #7
0
 partial void UpdatePaymentPeriod(PaymentPeriod instance);
コード例 #8
0
 partial void InsertPaymentPeriod(PaymentPeriod instance);