//SmartMan
        // Specify Repo
        public static SmartManRepository CreateSmartManRepo()
        {
            var dc = ConnectionFactory.GetSmartManDC();

            return(new SmartManRepository(dc));
        }
        public static AutoInsertHandler CreateAutoInsert(string SignDocID)
        {
            var dc = ConnectionFactory.GetSmartManDC();

            return(new AutoInsertHandler(dc, SignDocID));
        }
        public static DailyRepository CreateDailyRepo()
        {
            var dc = ConnectionFactory.GetSmartManDC();

            return(new DailyRepository(dc, CreateRootRepo()));
        }
        public static AutoInsertHandler CreateAutoInsert()
        {
            var dc = ConnectionFactory.GetSmartManDC();

            return(new AutoInsertHandler(dc));
        }