public AttachmentRuleController(
			 IAuditService<AttachmentRule, AttachmentRuleAudit> auditService,
			IAttachmentRuleService attachmentRuleService)
        {
            this.AuditService = auditService;
            this.AttachmentRuleService = attachmentRuleService;
        }
Esempio n. 2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="AttachmentRuleFilter"/> class.
 /// </summary>
 /// <param name="attachmentRuleService">The attachment rule service.</param>
 public AttachmentRuleFilter(IAttachmentRuleService attachmentRuleService)
 {
     this.AttachmentRuleService = attachmentRuleService;
 }