예제 #1
0
 public GenericRpository(ICartConnectionFactory connectionFactory, string tableName, string idName = "Id")
 {
     _connectionFactory = connectionFactory;
     _tableName         = tableName;
     _IdName            = idName;
 }
예제 #2
0
 public CartItemsRepository(ICartConnectionFactory connectionFactory) : base(connectionFactory, "CartItems")
 {
 }