本文整理汇总了C#中Issue.Save方法的典型用法代码示例。如果您正苦于以下问题:C# Issue.Save方法的具体用法?C# Issue.Save怎么用?C# Issue.Save使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Issue
的用法示例。
在下文中一共展示了Issue.Save方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: TestSave
public void TestSave()
{
var model = new Issue()
{
ProjectID = 1,
OriginationDate = DateTime.Now,
CategoryID = 1,
ProductID = 1,
IssuingMemberID = 1,
ResponcedMemberID = 1,
CheckedMemberID = 1,
Deadline = DateTime.Now.AddDays(7),
Status = 1,
FinishedDate = null,
Comment = "test"
};
bool result = model.Save();
Assert.IsTrue(result);
}
示例2: Main
static void Main(string[] args)
{
IConfigurationSource config = ActiveRecordSectionHandler.Instance;
ActiveRecordStarter.Initialize(Assembly.GetExecutingAssembly(), config);
ActiveRecordStarter.CreateSchema();
using (new SessionScope())
{
var monorail = new Project { Name = "MonoRail" };
monorail.Save();
var windsor = new Project { Name = "Windsor" };
windsor.Save();
var activeRecord = new Project { Name = "ActiveRecord" };
activeRecord.Save();
var issue1 = new Issue
{
Summary = "Something went wrong",
Description = "blah blah",
Project = monorail,
Type = IssueType.Bug
};
issue1.Save();
var issue2 = new Issue
{
Summary = "Here is a great idea",
Description = "blah blah",
Project = windsor,
Type = IssueType.NewFeature
};
issue2.Save();
var issue3 = new Issue
{
Summary = "Another thing went wrong",
Description = "blah blah",
Project = windsor,
Type = IssueType.Bug
};
issue3.Save();
}
using (new SessionScope())
{
var mr = Project.Find(1);
mr.Name = "MonoRail 2.0";
mr.Save();
IList<Issue> bugs = Issue.FindAllBugs();
foreach (var bug in bugs)
{
Console.WriteLine("Bug found: " + bug.Summary + ", in project: " + bug.Project.Name);
}
}
Console.WriteLine("Done");
Console.ReadLine();
}
示例3: CreateSTVLog
public Issue CreateSTVLog(int? stvLogID, bool convertDNtoSTV, PickList pickList, Order order, int? supplierId, int activityId, bool hasInsurance, int userId)
{
int paymentTypeID = order.PaymentTypeID;
Issue stvLog = new Issue();
stvLog.AddNew();
stvLog.PrintedDate = DateTimeHelper.ServerDateTime;
stvLog.RefNo = order.RefNo;
stvLog.PickListID = pickList.ID;
if(supplierId != null)
{
stvLog.SupplierID = supplierId.Value;
}
stvLog.UserID = userId;
stvLog.StoreID = activityId;
stvLog.IsDeliveryNote = (paymentTypeID == PaymentType.Constants.DELIVERY_NOTE);
stvLog.HasInsurance = hasInsurance;
stvLog.FiscalYearID = FiscalYear.Current.ID;
var activity = new Activity();
activity.LoadByPrimaryKey(activityId);
stvLog.AccountID = activity.AccountID;
if (paymentTypeID == PaymentType.Constants.DELIVERY_NOTE)
{
stvLog.DocumentTypeID = DocumentType.documentTypes.DeliveryNote.DocumentTypeID;
}
else if (paymentTypeID == PaymentType.Constants.CASH)
{
stvLog.DocumentTypeID = DocumentType.documentTypes.Cash.DocumentTypeID;
}
else if (paymentTypeID == PaymentType.Constants.CREDIT)
{
stvLog.DocumentTypeID = DocumentType.documentTypes.Credit.DocumentTypeID;
}
else if (paymentTypeID == PaymentType.Constants.STV)
{
stvLog.DocumentTypeID = DocumentType.documentTypes.STV.DocumentTypeID;
}
else if(paymentTypeID == PaymentType.Constants.ERROR_CORRECTION)
{
stvLog.DocumentTypeID = DocumentType.documentTypes.ErrorCorrection.DocumentTypeID;
}
else if(paymentTypeID == PaymentType.Constants.INVENTORY)
{
stvLog.DocumentTypeID = DocumentType.documentTypes.EndingBalance.DocumentTypeID;
}
else if (paymentTypeID == PaymentType.Constants.DISPOSAL) // This should probably have a disposal document type, but for now, STV
{
stvLog.DocumentTypeID = DocumentType.documentTypes.STV.DocumentTypeID;
}
stvLog.IDPrinted = DocumentType.GetNextSequenceNo(stvLog.DocumentTypeID, stvLog.AccountID, stvLog.FiscalYearID);
if (!order.IsColumnNull("RequestedBy"))
{
stvLog.ReceivingUnitID = order.RequestedBy;
}
if (stvLogID.HasValue)
{
stvLog.IsReprintOf = stvLogID.Value;
//this means the STV is from replaced
Issue s = new Issue();
s.LoadByPrimaryKey(stvLogID.Value);
stvLog.IsDeliveryNote = false;
if (!s.IsColumnNull("IsDeliveryNote") && s.IsDeliveryNote && !convertDNtoSTV)
{
stvLog.IsDeliveryNote = true;
}
}
stvLog.Save();
return stvLog;
}