/// <summary> /// This method is used for inserting an object into the database /// </summary> /// <param name="associate">This is the Associate object that holds all information that is required so that the insert should be made.</param> /// <param name="dbGenericEntity">This is the Associate Entity.</param> /// <returns></returns> private int InsertInitialBudgetMasterTest(IInitialBudget initialBudget, DBGenericEntity dbGenericEntity) { int rowCount = dbGenericEntity.ExecuteCustomProcedure("InsertIntialBudgetMaster", initialBudget); return(rowCount); }
/// <summary> /// This method is used for inserting an object into the database /// </summary> /// <param name="associate">This is the Associate object that holds all information that is required so that the insert should be made.</param> /// <param name="dbGenericEntity">This is the Associate Entity.</param> /// <returns></returns> private int InsertRevisedBudgetMasterTest(IRevisedBudget revisedBudget, DBGenericEntity dbGenericEntity) { int rowCount = dbGenericEntity.ExecuteCustomProcedure("InsertRevisedBudgetMaster", revisedBudget); return(rowCount); }