public GroupController(IAccount account, IJSON json, ICSContentType contenttype, ILogging logging)
 {
     this.account     = account;
     this.json        = json;
     this.contenttype = contenttype;
     this.logging     = logging;
 }
 public ContentTypeController(ICSContentType contenttype, IJSON json, ILogging logging)
 {
     this.contenttype = contenttype;
     this.json        = json;
     this.logging     = logging;
 }