c# - Show UI dialog from Service.contracts project following coding rules -
my dto's located in contracts project, layer between ui , service
i have observable collection of thes objects loaded in grid in view. checkbox binded boolean value of dto.
now run situation in cases if boolean checked need present user dialog view modify properties.
i cannot create view in ui project cause cause circular reference between ui , contracts projects.
i add view in contract project don't consider 'clean' solution.
same issue creating view in 'common' project, here utilities used through entire application
any idea's how can implemented proper possible?
i solved issue adding handler dto's propertychanged event. there can validate object , show other views ui layer , don't need touch contracts project
Comments
Post a Comment