Interface IWorkTimeSetter
Interface for objects that provide write-only access to work time. This interface is used for components that need to update work time without reading it.
public interface IWorkTimeSetter
- Extension Methods
Remarks
This interface is used when:
- Only setting work time is required
- The object should not be able to read work time
- Time values need to be updated during operation
Properties
WorkTime_s
Sets the work time in seconds.
double WorkTime_s { set; }
Property Value
Remarks
When setting work time:
- The value should be in seconds
- Negative values should be handled appropriately
- Updates should maintain time continuity