Ejemplo n.º 1
0
	public bool AddBaseMonthlyInformation(BaseMonthlyInformation baseMonthlyInformation)
	{
		baseMonthlyInformation.MainOfficeTypeID = this.MainOfficeTypeID;
		BaseMonthlyInformationDBAccess baseMonthlyInformationDBAccess = new BaseMonthlyInformationDBAccess();
		if (baseMonthlyInformationDBAccess.Insert(baseMonthlyInformation)>0)
			return (true);
		return (false);
	}
Ejemplo n.º 2
0
        public bool AddBaseMonthlyInformation(BaseMonthlyInformation baseMonthlyInformation)
        {
            baseMonthlyInformation.YearTypeID = this.YearTypeID;
            BaseMonthlyInformationDBAccess baseMonthlyInformationDBAccess = new BaseMonthlyInformationDBAccess();

            if (baseMonthlyInformationDBAccess.Insert(baseMonthlyInformation) > 0)
            {
                return(true);
            }
            return(false);
        }
Ejemplo n.º 3
0
 public BaseMonthlyInformationHandler()
 {
     baseMonthlyInformationDb = new BaseMonthlyInformationDBAccess();
 }