本文整理匯總了C#中SidejobModel.SidejobEntities.AddToLockedCustomers方法的典型用法代碼示例。如果您正苦於以下問題:C# SidejobEntities.AddToLockedCustomers方法的具體用法?C# SidejobEntities.AddToLockedCustomers怎麽用?C# SidejobEntities.AddToLockedCustomers使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類SidejobModel.SidejobEntities
的用法示例。
在下文中一共展示了SidejobEntities.AddToLockedCustomers方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: BlockPoster
public void BlockPoster(SidejobEntities context)
{
if (PosterRole == "CUS")
{
//Add to BlockedCustomer
var cg = (from c in context.CustomerGenerals
where c.CustomerID == PosterID
select c).FirstOrDefault();
if (cg != null)
{
if (((from c in context.LockedCustomers
where c.CustomerID == cg.CustomerID
select c).FirstOrDefault()) == null)
{
var lockedcustomer = new LockedCustomer
{
FirstName = cg.FirstName,
LastName = cg.LastName,
Country = cg.CountryName,
Region = cg.RegionName,
Age = cg.Age,
Gender = cg.Gender,
EmailAddress = cg.EmailAddress,
Reason = "NOT Paying Project" + ProjectID,
Date = DateTime.Now.Date,
IP = 0,
CustomerID = cg.CustomerID,
ProjectID = ProjectID
};
context.AddToLockedCustomers(lockedcustomer);
}
}
context.SaveChanges();
}
if (PosterRole == "PRO")
{
//Add to BlockedProfessional
var pg = (from c in context.ProfessionalGenerals
where c.ProID == PosterID
select c).FirstOrDefault();
if (pg != null)
{
if (((from c in context.LockedProfessionals
where c.ProID == pg.ProID
select c).FirstOrDefault()) == null)
{
var lockedprofessional = new LockedProfessional
{
FirstName = pg.FirstName,
LastName = pg.LastName,
Country = pg.CountryName,
Region = pg.RegionName,
Age = pg.Age,
Gender = pg.Gender,
EmailAddress = pg.EmailAddress,
Reason = "NOT Paying Project" + ProjectID,
Date = DateTime.Now.Date,
IP = 0,
ProID = pg.ProID,
ProjectID = ProjectID
};
context.AddToLockedProfessionals(lockedprofessional);
}
}
context.SaveChanges();
}
}