本文整理汇总了C#中CustomBaseRepository.Delete方法的典型用法代码示例。如果您正苦于以下问题:C# CustomBaseRepository.Delete方法的具体用法?C# CustomBaseRepository.Delete怎么用?C# CustomBaseRepository.Delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CustomBaseRepository
的用法示例。
在下文中一共展示了CustomBaseRepository.Delete方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: CreateFormulaTemplate
public void CreateFormulaTemplate(List<Cat_FormulaTemplateEntity> listFormulaTemplate,Guid GradeID)
{
using (var context = new VnrHrmDataContext())
{
var unitOfWork = (IUnitOfWork)new UnitOfWork(context);
var repoCat_FormulaTemplate = new CustomBaseRepository<Cat_FormulaTemplate>(unitOfWork);
var repoCat_Element = new CustomBaseRepository<Cat_Element>(unitOfWork);
#region Xử lý bảng template
//lấy các phần tử template trong grade
List<Cat_FormulaTemplate> listFormulaTemplateByGrade = repoCat_FormulaTemplate.FindBy(m => m.IsDelete != true && m.GradeID != null && m.GradeID == GradeID).ToList();
//xóa các phần tử đó
repoCat_FormulaTemplate.Delete(listFormulaTemplateByGrade);
//insert lại các phần tử mới
List<Cat_FormulaTemplate> listFormulaTemplateModel = listFormulaTemplate.Translate<Cat_FormulaTemplate>();
listFormulaTemplateModel.ForEach(m => m.GradeID = GradeID);
repoCat_FormulaTemplate.Add(listFormulaTemplateModel);
#endregion
#region Xử lý bảng cat_element
//lấy các phần tử có cùng mã code với template
List<Cat_Element> listElement = repoCat_Element.FindBy(m => m.IsDelete != true && m.GradePayrollID == GradeID).ToList();
listElement = listElement.Where(m => listFormulaTemplate.Any(t => t.ElementCode.ReplaceSpace() == m.ElementCode.ReplaceSpace())).ToList();
//xóa các phần tử đó đi
repoCat_Element.Delete(listElement);
//tạo ra các element
List<Cat_Element> listElementModel = new List<Cat_Element>();
Cat_Element item = new Cat_Element();
foreach (var template in listFormulaTemplate)
{
item = new Cat_Element();
item.GradePayrollID = GradeID;
item.ElementCode = template.ElementCode.ReplaceSpace();
item.ElementName = template.ElementName;
item.Formula = template.Formula;
item.IsBold = template.IsBold;
item.Invisible = template.Invisible;
item.Description = template.Description;
item.TabType = CatElementType.Payroll.ToString();
item.MethodPayroll = MethodPayroll.E_NORMAL.ToString();
item.ElementType = CatElementType.Payroll.ToString();
item.Type = EnumDropDown.ElementDataType.Double.ToString();
listElementModel.Add(item);
}
repoCat_Element.Add(listElementModel);
unitOfWork.SaveChanges();
#endregion
}
}
示例2: ComputeDepartment
public void ComputeDepartment(Guid departmentID)
{
using (var context = new VnrHrmDataContext())
{
var unitOfWork = (UnitOfWork)(new UnitOfWork(context));
var repoSal_SalaryDepartment = new CustomBaseRepository<Sal_SalaryDepartment>(unitOfWork);
var repoSal_SalaryDepartmentItem = new CustomBaseRepository<Sal_SalaryDepartmentItem>(unitOfWork);
var repoAtt_CutOffDuration = new CustomBaseRepository<Att_CutOffDurationEntity>(unitOfWork);
Sal_SalaryDepartment item = new Sal_SalaryDepartment();
item = repoSal_SalaryDepartment.GetById(departmentID);
//xóa các item nếu đã tính trước đó
List<Sal_SalaryDepartmentItem> listDepartmentItem = new List<Sal_SalaryDepartmentItem>();
listDepartmentItem = repoSal_SalaryDepartmentItem.GetAll().Where(m => m.SalaryDepartmentID == departmentID).ToList();
repoSal_SalaryDepartmentItem.Delete(listDepartmentItem);
unitOfWork.SaveChanges();
//nếu chọn theo cutoff thì lấy datefrom dateto của cutoff
if (item.CutOffDurationID != null)
{
var cutoff= repoAtt_CutOffDuration.GetById((Guid)item.CutOffDurationID);
item.MonthYear = cutoff.MonthYear;
item.DateFrom = cutoff.DateStart;
item.DateTo = cutoff.DateEnd;
}
Hashtable hasTable = new Hashtable();
List<Sal_SalaryDepartment> listSalaryDepartment = new List<Sal_SalaryDepartment>();
listSalaryDepartment.Add(item);
ComputeSalaryDepartment(item.MonthYear, (DateTime)item.DateFrom, (DateTime)item.DateTo, listSalaryDepartment, ref hasTable);
}
}
示例3: ComputeProductSalary
public void ComputeProductSalary(string OrgStructure, Guid? ProductID, Guid? ProductItemID, DateTime MonthStart, DateTime MonthEnd, string userLoginName)
{
using (var context = new VnrHrmDataContext())
{
var unitOfWork = (IUnitOfWork)new UnitOfWork(context);
var repoSal_ProductSalary = new CustomBaseRepository<Sal_ProductSalary>(unitOfWork);
var repoSal_ProductSalary1 = new CustomBaseRepository<Hre_Profile>(unitOfWork);
List<Cat_ProductEntity> ListProduct = new List<Cat_ProductEntity>();
List<Cat_ProductItemEntity> ListProductItem = new List<Cat_ProductItemEntity>();
List<Hre_ProfileEntity> ListProfile = new List<Hre_ProfileEntity>();
List<Sal_ProductiveEntity> ListProductive = new List<Sal_ProductiveEntity>();
List<Sal_ProductCapacityEntity> ListProductCapacity = new List<Sal_ProductCapacityEntity>();
List<Sal_ProductSalaryEntity> ListProductSalary = new List<Sal_ProductSalaryEntity>();
#region GetData
string status = string.Empty;
List<object> listModel = new List<object>();
listModel = new List<object>();
listModel.AddRange(new object[6]);
listModel[4] = 1;
listModel[5] = Int32.MaxValue - 1;
ListProduct = GetData<Cat_ProductEntity>(listModel, ConstantSql.hrm_cat_sp_get_Product,userLoginName, ref status);
listModel = new List<object>();
listModel.AddRange(new object[3]);
listModel[1] = 1;
listModel[2] = Int32.MaxValue - 1;
ListProductItem = GetData<Cat_ProductItemEntity>(listModel, ConstantSql.hrm_cat_sp_get_ProductItem,userLoginName, ref status);
listModel = new List<object>();
listModel.AddRange(new object[17]);
listModel[2] = OrgStructure;
listModel[15] = 1;
listModel[16] = Int32.MaxValue - 1;
ListProfile = GetData<Hre_ProfileEntity>(listModel, ConstantSql.hrm_hr_sp_get_ProfileAll,userLoginName, ref status);
listModel = new List<object>();
listModel.AddRange(new object[6]);
listModel[2] = MonthStart;
listModel[3] = MonthEnd;
listModel[4] = 1;
listModel[5] = Int32.MaxValue - 1;
ListProductive = GetData<Sal_ProductiveEntity>(listModel, ConstantSql.hrm_sal_sp_get_Sal_Producttive, userLoginName,ref status);
listModel = new List<object>();
listModel.AddRange(new object[7]);
listModel[3] = MonthStart;
listModel[4] = MonthEnd;
listModel[5] = 1;
listModel[6] = Int32.MaxValue - 1;
ListProductCapacity = GetData<Sal_ProductCapacityEntity>(listModel, ConstantSql.hrm_sal_sp_get_ProductCapacity,userLoginName, ref status);
listModel = new List<object>();
listModel.AddRange(new object[7]);
listModel[0] = OrgStructure;
listModel[3] = MonthStart;
listModel[4] = MonthEnd;
listModel[5] = 1;
listModel[6] = Int32.MaxValue - 1;
ListProductSalary = GetData<Sal_ProductSalaryEntity>(listModel, ConstantSql.hrm_sal_sp_get_Sal_ProductSalary,userLoginName, ref status);
#endregion
#region Delete dữ liệu củ
//lọc ra theo nhân viên
List<Sal_ProductSalary> listProductSalaryByProfile = ListProductSalary.Where(m => m.ProfileID != null && ListProfile.Any(t => t.ID == m.ProfileID)).ToList().Translate<Sal_ProductSalary>();
//bật cờ isdelete
repoSal_ProductSalary.Delete(listProductSalaryByProfile);
#endregion
#region Progress
//lọc Productive && ProductCapacity theo product || productitem
ListProductive = ListProductive.Where(m => (ProductID != null && m.ProductID == ProductID) || (ProductItemID != null && m.ProductItemID == ProductItemID)).ToList();
ListProductCapacity = ListProductCapacity.Where(m => (ProductID != null && m.ProductID == ProductID) || (ProductItemID != null && m.ProductItemID == ProductItemID)).ToList();
//duyệt qua profile
foreach (var profile in ListProductive)
{
#region các biến lưu dữ liệu tính đc
//tính sản phẩm thừa của nhân viên trong tháng trước
double TotalQuantityProductPrevious = 0;
//tổng sản lượng nhân viên làm đc, chưa cộng sản phẩm thừa vào
double TotalQuantityProduct = 0;
//Tổng sản lượng dùng để tính lương
double TotalQuantitySalary = 0;
//sản phẩm thừa trong tháng tính lương
double TotalQuantitySalaryPrevious = 0;
//tổng sản phẩm của tất cả nhân viên làm trong tháng
double TotalQuantityTotalProfile = 0;
//tổng tiền của sản phẩm
double TotalAmountByProduct = 0;
//lưu lại ID của loại tiền tệ
Guid? CurrencyID = null;
#endregion
//các sản phẩm mà nhân viên làm đc trong tháng
List<Sal_ProductiveEntity> ListProductiveByProfile = new List<Sal_ProductiveEntity>();
//.........这里部分代码省略.........