interface helpers
interface IEntityWithTotalSum | |
{ | |
decimal new_totalsum { get; set; } | |
decimal new_netamount { get; set; } | |
decimal new_margin { get; set; } | |
} |
public partial class Account : IEntityWithTotalSum {} | |
public partial class Opportunity : IEntityWithTotalSum {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment