Example #1
0
            public static void Delete(Guid id)
            {
                //#warning This method is only for mock purposes

                AbstractMockModel <B> .Del(id);
            }
Example #2
0
            public static IEnumerable <F> All()
            {
                //#warning This method is only for mock purposes

                return(MapList(AbstractMockModel <B> .All()));
            }
Example #3
0
            public static void Put(F f)
            {
                //#warning This method is only for mock purposes

                AbstractMockModel <B> .Put(Map(f));
            }
Example #4
0
            public static F Get(Guid id)
            {
                //#warning This method is only for mock purposes

                return(Map(AbstractMockModel <B> .Get(id)));
            }