コード例 #1
0
 public DbAccountCompany(long id, SCG.DB.DTO.DbAccount accountID, SCG.DB.DTO.DbCompany companyID, string companyCode, bool useParent, int taxCode, int costCenter, int internalOrder, int saleOrder)
 {
     this.id            = id;
     this.accountID     = accountID;
     this.companyID     = companyID;
     this.companyCode   = companyCode;
     this.useParent     = useParent;
     this.taxCode       = taxCode;
     this.costCenter    = costCenter;
     this.internalOrder = internalOrder;
     this.saleOrder     = saleOrder;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the DbCompanyPaymentMethod class
 /// </summary>
 /// <param name="companyCode">Initial <see cref="DbCompanyPaymentMethod.CompanyCode" /> value</param>
 /// <param name="active">Initial <see cref="DbCompanyPaymentMethod.Active" /> value</param>
 /// <param name="updBy">Initial <see cref="DbCompanyPaymentMethod.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbCompanyPaymentMethod.UpdDate" /> value</param>
 /// <param name="creBy">Initial <see cref="DbCompanyPaymentMethod.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbCompanyPaymentMethod.CreDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbCompanyPaymentMethod.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbCompanyPaymentMethod.RowVersion" /> value</param>
 /// <param name="company">Initial <see cref="DbCompanyPaymentMethod.Company" /> value</param>
 /// <param name="paymentMethod">Initial <see cref="DbCompanyPaymentMethod.PaymentMethod" /> value</param>
 public DbCompanyPaymentMethod(string companyCode, bool active, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, SCG.DB.DTO.DbCompany company, SCG.DB.DTO.DbPaymentMethod paymentMethod)
 {
     this.companyCode   = companyCode;
     this.active        = active;
     this.updBy         = updBy;
     this.updDate       = updDate;
     this.creBy         = creBy;
     this.creDate       = creDate;
     this.updPgm        = updPgm;
     this.rowVersion    = rowVersion;
     this.company       = company;
     this.paymentMethod = paymentMethod;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the DbDocumentRunning class
 /// </summary>
 /// <param name="year">Initial <see cref="DbDocumentRunning.Year" /> value</param>
 /// <param name="runningNo">Initial <see cref="DbDocumentRunning.RunningNo" /> value</param>
 /// <param name="active">Initial <see cref="DbDocumentRunning.Active" /> value</param>
 /// <param name="creBy">Initial <see cref="DbDocumentRunning.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbDocumentRunning.CreDate" /> value</param>
 /// <param name="updBy">Initial <see cref="DbDocumentRunning.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbDocumentRunning.UpdDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbDocumentRunning.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbDocumentRunning.RowVersion" /> value</param>
 /// <param name="documentTypeID">Initial <see cref="DbDocumentRunning.DocumentTypeID" /> value</param>
 /// <param name="companyID">Initial <see cref="DbDocumentRunning.CompanyID" /> value</param>
 public DbDocumentRunning(int year, long runningNo, bool active, long creBy, DateTime creDate, long updBy, DateTime updDate, string updPgm, byte[] rowVersion, int documentTypeID, SCG.DB.DTO.DbCompany companyID)
 {
     this.year           = year;
     this.runningNo      = runningNo;
     this.active         = active;
     this.creBy          = creBy;
     this.creDate        = creDate;
     this.updBy          = updBy;
     this.updDate        = updDate;
     this.updPgm         = updPgm;
     this.rowVersion     = rowVersion;
     this.documentTypeID = documentTypeID;
     this.companyID      = companyID;
 }
コード例 #4
0
        /// <summary>
        /// Initializes a new instance of the DbLocation class
        /// </summary>
        /// <param name="locationCode">Initial <see cref="DbLocation.LocationCode" /> value</param>
        /// <param name="updBy">Initial <see cref="DbLocation.UpdBy" /> value</param>
        /// <param name="updDate">Initial <see cref="DbLocation.UpdDate" /> value</param>
        /// <param name="creBy">Initial <see cref="DbLocation.CreBy" /> value</param>
        /// <param name="creDate">Initial <see cref="DbLocation.CreDate" /> value</param>
        /// <param name="updPgm">Initial <see cref="DbLocation.UpdPgm" /> value</param>
        /// <param name="rowVersion">Initial <see cref="DbLocation.RowVersion" /> value</param>
        /// <param name="active">Initial <see cref="DbLocation.Active" /> value</param>
        /// <param name="company">Initial <see cref="DbLocation.Company" /> value</param>

        public DbLocation(string comment, string locationName, string locationCode, long updBy, DateTime updDate, long creBy, DateTime creDate, string updPgm, Byte[] rowVersion, bool active, SCG.DB.DTO.DbCompany companyID, string companyCode, bool isAllowImportExpense)
        {
            this.comment              = comment;
            this.locationName         = locationName;
            this.locationCode         = locationCode;
            this.updBy                = updBy;
            this.updDate              = updDate;
            this.creBy                = creBy;
            this.creDate              = creDate;
            this.updPgm               = updPgm;
            this.rowVersion           = rowVersion;
            this.active               = active;
            this.companyID            = companyID;
            this.companyCode          = companyCode;
            this.isAllowImportExpense = isAllowImportExpense;
        }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of the DbCostCenter class
 /// </summary>
 /// <param name="costCenterCode">Initial <see cref="DbCostCenter.CostCenterCode" /> value</param>
 /// <param name="valid">Initial <see cref="DbCostCenter.Valid" /> value</param>
 /// <param name="expire">Initial <see cref="DbCostCenter.Expire" /> value</param>
 /// <param name="description">Initial <see cref="DbCostCenter.Description" /> value</param>
 /// <param name="actualPrimaryCosts">Initial <see cref="DbCostCenter.ActualPrimaryCosts" /> value</param>
 /// <param name="active">Initial <see cref="DbCostCenter.Active" /> value</param>
 /// <param name="creBy">Initial <see cref="DbCostCenter.CreBy" /> value</param>
 /// <param name="creDate">Initial <see cref="DbCostCenter.CreDate" /> value</param>
 /// <param name="updBy">Initial <see cref="DbCostCenter.UpdBy" /> value</param>
 /// <param name="updDate">Initial <see cref="DbCostCenter.UpdDate" /> value</param>
 /// <param name="updPgm">Initial <see cref="DbCostCenter.UpdPgm" /> value</param>
 /// <param name="rowVersion">Initial <see cref="DbCostCenter.RowVersion" /> value</param>
 /// <param name="companyID">Initial <see cref="DbCostCenter.CompanyID" /> value</param>
 /// <param name="companyCode">Initial <see cref="DbCostCenter.CompanyCode" /> value</param>
 public DbCostCenter(string costCenterCode, DateTime valid, DateTime expire, string description, bool actualPrimaryCosts, bool active, long creBy, DateTime creDate, long updBy, DateTime updDate, string updPgm, Byte[] rowVersion, SCG.DB.DTO.DbCompany companyID, string companyCode, string businessArea, string profitCenter)
 {
     this.costCenterCode     = costCenterCode;
     this.valid              = valid;
     this.expire             = expire;
     this.description        = description;
     this.actualPrimaryCosts = actualPrimaryCosts;
     this.active             = active;
     this.creBy              = creBy;
     this.creDate            = creDate;
     this.updBy              = updBy;
     this.updDate            = updDate;
     this.updPgm             = updPgm;
     this.rowVersion         = rowVersion;
     this.companyID          = companyID;
     this.companyCode        = companyCode;
     this.BusinessArea       = businessArea;
     this.ProfitCenter       = profitCenter;
 }
コード例 #6
0
ファイル: Dbpb.cs プロジェクト: naristhararuk/pjfsaccount
        /// <summary>
        /// Initializes a new instance of the Dbpb class
        /// </summary>
        /// <param name="pbCode">Initial <see cref="Dbpb.PbCode" /> value</param>
        /// <param name="description">Initial <see cref="Dbpb.Description" /> value</param>
        /// <param name="pettyCashLimit">Initial <see cref="Dbpb.PettyCashLimit" /> value</param>
        /// <param name="blockPost">Initial <see cref="Dbpb.BlockPost" /> value</param>
        /// <param name="active">Initial <see cref="Dbpb.Active" /> value</param>
        /// <param name="creBy">Initial <see cref="Dbpb.CreBy" /> value</param>
        /// <param name="creDate">Initial <see cref="Dbpb.CreDate" /> value</param>
        /// <param name="updBy">Initial <see cref="Dbpb.UpdBy" /> value</param>
        /// <param name="updDate">Initial <see cref="Dbpb.UpdDate" /> value</param>
        /// <param name="updPgm">Initial <see cref="Dbpb.UpdPgm" /> value</param>
        /// <param name="rowVersion">Initial <see cref="Dbpb.RowVersion" /> value</param>
        /// <param name="companyId">Initial <see cref="Dbpb.CompanyId" /> value</param>
        /// <param name="companyCode">Initial <see cref="Dbpb.CompanyCode" /> value</param>
        public Dbpb(string pbCode, string description, double pettyCashLimit, bool blockPost, bool active, long creBy, DateTime creDate, long updBy, DateTime updDate, string updPgm, Byte[] rowVersion, SCG.DB.DTO.DbCompany companyId, string companyCode, string supplementary)
        {
            this.pbCode         = pbCode;
            this.description    = description;
            this.pettyCashLimit = pettyCashLimit;
            this.supplementary  = supplementary;
            this.blockPost      = blockPost;
            this.active         = active;
            this.creBy          = creBy;
            this.creDate        = creDate;
            this.updBy          = updBy;
            this.updDate        = updDate;
            this.updPgm         = updPgm;
            this.rowVersion     = rowVersion;
            this.companyId      = companyId;
            this.companyCode    = companyCode;

            this.repOffice = repOffice;
        }