상속: 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);
        }