本文整理汇总了C#中CustomBaseRepository.Remove方法的典型用法代码示例。如果您正苦于以下问题:C# CustomBaseRepository.Remove方法的具体用法?C# CustomBaseRepository.Remove怎么用?C# CustomBaseRepository.Remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CustomBaseRepository
的用法示例。
在下文中一共展示了CustomBaseRepository.Remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ComputeComissionService
//.........这里部分代码省略.........
ListShopID = listShop.Select(m => m.ID).ToList();
}
else
{
if (!listShop.Any(m => m.ID == ShopID))
{
if (!listGroupShop.Any(m => m.ID == ShopID))
{
ListShopID = listShop.Select(m => m.ID).ToList();
}
else
{
ListShopID = listShop.Where(m => m.ShopGroupID == ShopID).Select(m => m.ID).ToList();
}
}
else
{
ListShopID.Add((Guid)ShopID);
}
}
List<Sal_RevenueRecord> _tmpRevenueRecord;
List<ElementFormula> listElementFormula = new List<ElementFormula>();
foreach (Guid Guid in ListShopID)
{
#region Xóa tháng đã tính trước đó nếu có
_tmpRevenueRecord = new List<Sal_RevenueRecord>();
_tmpRevenueRecord = listRevenueRecord.Where(m => m.ShopID == Guid && m.Month.Value.Month == Month.Month && m.Month.Value.Year == Month.Year).ToList();
if (_tmpRevenueRecord.Count > 0)
{
foreach (var j in _tmpRevenueRecord)
{
repoRevenueRecord.Remove(j);
}
}
#endregion
#region Lấy các phần tử là Enum
Sal_RevenueForShopEntity RevenueForShopItem = new Sal_RevenueForShopEntity();
RevenueForShopItem = listRevenueForShop.Where(m => m.ShopID == Guid && m.KPIBonusID == listKPIBonus.Where(t => t.IsTotalRevenue == true).FirstOrDefault().ID && (m.DateFrom.Value.Month == Month.Month && m.DateFrom.Value.Year == Month.Year) && (m.DateTo.Value.Month == Month.Month && m.DateTo.Value.Year == Month.Year)).FirstOrDefault();
if (RevenueForShopItem != null)
{
listElementFormula.Add(new ElementFormula(PayrollElement.SAL_COM_TAGET_SHOP.ToString(), RevenueForShopItem.Target, 0));
listElementFormula.Add(new ElementFormula(PayrollElement.SAL_COM_ACTUAL_SHOP.ToString(), RevenueForShopItem.Actual, 0));
listElementFormula.Add(new ElementFormula(PayrollElement.SAL_COM_PRECENT_REVENUE.ToString(), RevenueForShopItem.Actual / RevenueForShopItem.Target, 0));
}
else
{
continue;
}
listElementFormula.Add(new ElementFormula(PayrollElement.SAL_COM_COUNT_SHOPMEMBER.ToString(), listProfile.Where(m => m.ShopID == Guid).Count(), 0));
listElementFormula.Add(new ElementFormula(PayrollElement.SAL_COM_COUNT_SL.ToString(), listShop.Where(m => m.ID == Guid).FirstOrDefault().NoShiftLeader, 0));
listElementFormula.Add(new ElementFormula(PayrollElement.SAL_COM_RANK.ToString(), listShop.Where(m => m.ID == Guid).FirstOrDefault().Rank, 0));
#endregion
#region Lấy giá trị cho các loại phần tử là Hoa Hồng
double TotalMoney_RevenueForShop = 0;//biến lưu tổng doanh thu cửa hàng sau khi đã trừ tiền SL
if (listKPIBonus != null && listKPIBonus.Count > 0)