Interface INextMilestonePlugin
Contains the algorithm for calculating the next due date for a given sale or all sales.
Namespace: SuperOffice.CRM
Assembly: SoCore.dll
Syntax
public interface INextMilestonePlugin : IPlugin
Methods
BatchUpdateNextMilestone(ProgressEstimateCallback, ProgressStepCallback)
Contains the algorithm for calculating the next due date for a given sale or all sales.
Declaration
void BatchUpdateNextMilestone(ProgressEstimateCallback estimate, ProgressStepCallback step)
Parameters
Type | Name | Description |
---|---|---|
ProgressEstimateCallback | estimate | |
ProgressStepCallback | step |
CalculateNextMilestoneDate(Int32)
Contains the algorithm for calculating the next due date for a given sale or all sales.
Declaration
NextDateInfo CalculateNextMilestoneDate(int projectId)
Parameters
Type | Name | Description |
---|---|---|
Int32 | projectId |
Returns
Type | Description |
---|---|
NextDateInfo |
GetNextMilestoneDate(Int32)
Contains the algorithm for calculating the next due date for a given sale or all sales.
Declaration
NextDateInfo GetNextMilestoneDate(int projectId)
Parameters
Type | Name | Description |
---|---|---|
Int32 | projectId |
Returns
Type | Description |
---|---|
NextDateInfo |
Extension Methods
EnumUtil.MapEnums<From, To>(From)