示例#1
0
 public static SetStateResponse SetState <T, U>(this IOrganizationService service, ExtendedEntity <T, U> entity, T state, U status)
     where T : struct, IComparable, IConvertible, IFormattable
     where U : struct, IComparable, IConvertible, IFormattable
 {
     return(entity.SetState(service, state, status));
 }
示例#2
0
 public SetStateResponse SetState <T, U>(ExtendedEntity <T, U> entity, T state)
     where T : struct, IComparable, IConvertible, IFormattable
     where U : struct, IComparable, IConvertible, IFormattable
 {
     return(entity.SetState(service, state));
 }