public IFluentPayRollTransactionTypes DeletePayRollTransactionTypes(PayRollTransactionTypes deleteObject)
 {
     unitOfWork.payRollTransactionTypesRepository.DeleteObject(deleteObject);
     this.processStatus = CreateProcessStatus.Delete;
     return(this as IFluentPayRollTransactionTypes);
 }
 public IFluentPayRollTransactionTypes AddPayRollTransactionTypes(PayRollTransactionTypes newObject)
 {
     unitOfWork.payRollTransactionTypesRepository.AddObject(newObject);
     this.processStatus = CreateProcessStatus.Insert;
     return(this as IFluentPayRollTransactionTypes);
 }