public TemplateRepository(IAutoResponderContext autoResponderContext, IMapToExisting<Template, Template> templateMapper)
        {
            Check.If(autoResponderContext).IsNotNull();
            Check.If(templateMapper).IsNotNull();

            _autoResponderContext = autoResponderContext;
            _templateMapper = templateMapper;
        }
        public ResponseRepository(IAutoResponderContext autoResponderContext)
        {
            Check.If(autoResponderContext).IsNotNull();

            _autoResponderContext = autoResponderContext;
        }