Inheritance: IDiscountRepository, IDiscountWriter
示例#1
0
        public static void DapperDiscounts()
        {
            var repo = new DapperDiscountRepository();

            repo.DumpAll();
        }
示例#2
0
        public static void WriteWithDapper()
        {
            var writer = new DapperDiscountRepository();

            writer.Test("TEN", 10);
        }