コード例 #1
0
        public static ICommandCustom insert <T>(T entity)
        {
            EntityToCommandCustom fwEntityToFWCommand = new EntityToCommandCustom();

            return(fwEntityToFWCommand.insert <T>(entity));
        }
コード例 #2
0
        public static List <ICommandCustom> insert <T>(List <T> entityList)
        {
            EntityToCommandCustom fwEntityToFWCommand = new EntityToCommandCustom();

            return(fwEntityToFWCommand.insert <T>(entityList));
        }